Lines Matching refs:u32Usec
92 void TIMER_Delay(TIMER_T *timer, uint32_t u32Usec) in TIMER_Delay() argument
104 if(u32Usec < 1000UL) in TIMER_Delay()
106 u32Usec = 1000UL; in TIMER_Delay()
108 if(u32Usec > 1000000UL) in TIMER_Delay()
110 u32Usec = 1000000UL; in TIMER_Delay()
115 if(u32Usec < 100UL) in TIMER_Delay()
117 u32Usec = 100UL; in TIMER_Delay()
119 if(u32Usec > 1000000UL) in TIMER_Delay()
121 u32Usec = 1000000UL; in TIMER_Delay()
129 u32Cmpr = (u32Usec * 1000UL) / u32NsecPerTick; in TIMER_Delay()
133 u32Cmpr = u32Usec * (u32Clk / 1000000UL); in TIMER_Delay()