Lines Matching refs:u32Usec
98 int32_t LPTMR_Delay(LPTMR_T *lptmr, uint32_t u32Usec) in LPTMR_Delay() argument
110 if(u32Usec < 1000UL) in LPTMR_Delay()
112 u32Usec = 1000UL; in LPTMR_Delay()
114 if(u32Usec > 1000000UL) in LPTMR_Delay()
116 u32Usec = 1000000UL; in LPTMR_Delay()
121 if(u32Usec < 100UL) in LPTMR_Delay()
123 u32Usec = 100UL; in LPTMR_Delay()
125 if(u32Usec > 1000000UL) in LPTMR_Delay()
127 u32Usec = 1000000UL; in LPTMR_Delay()
135 u32Cmpr = (u32Usec * 1000UL) / u32NsecPerTick; in LPTMR_Delay()
139 u32Cmpr = u32Usec * (u32Clk / 1000000UL); in LPTMR_Delay()