Lines Matching refs:ms
41 static void _rtc_timer_start(uint32_t ms) in _rtc_timer_start() argument
45 compare = (uint32_t)(32.768 * ms); in _rtc_timer_start()
55 static void sleep_tick_adjust(uint32_t ms) in sleep_tick_adjust() argument
59 diff = rt_tick_from_millisecond(ms); in sleep_tick_adjust()
89 rt_uint32_t ms; in _sleep_entry() local
95 ms = timeout * (1000 / RT_TICK_PER_SECOND); in _sleep_entry()
98 _rtc_timer_start(ms); in _sleep_entry()
104 ms = (count + 32) / 32.768; in _sleep_entry()
106 sleep_tick_adjust(ms); in _sleep_entry()
118 void sleep_timer_start(uint32_t ms) in sleep_timer_start() argument
120 _rtc_timer_start(ms); in sleep_timer_start()