Searched refs:tick (Results 1 – 12 of 12) sorted by relevance
136 TimerTime_t RtcTick2Ms( uint32_t tick ) in RtcTick2Ms() argument138 uint32_t seconds = tick >> 10; in RtcTick2Ms()140 tick = tick & 0x3FF; in RtcTick2Ms()141 return ( ( seconds * 1000 ) + ( ( tick * 1000 ) >> 10 ) ); in RtcTick2Ms()
246 uint32_t RtcTick2Ms( uint32_t tick ) in RtcTick2Ms() argument248 uint32_t seconds = tick >> N_PREDIV_S; in RtcTick2Ms()250 tick = tick & PREDIV_S; in RtcTick2Ms()251 return ( ( seconds * 1000 ) + ( ( tick * 1000 ) >> N_PREDIV_S ) ); in RtcTick2Ms()
247 uint32_t RtcTick2Ms( uint32_t tick ) in RtcTick2Ms() argument249 uint32_t seconds = tick >> N_PREDIV_S; in RtcTick2Ms()251 tick = tick & PREDIV_S; in RtcTick2Ms()252 return ( ( seconds * 1000 ) + ( ( tick * 1000 ) >> N_PREDIV_S ) ); in RtcTick2Ms()
83 TimerTime_t RtcTick2Ms( uint32_t tick );
8 been added to the timers task queue. The execution delay or period is set in ticks, where one tick …9 … of clock cycles in the hardware timer. Changing the number of clock cycles in a tick automatically
607 - Increase RTC tick frequency for higher resolution860 - Added another timer in order increment the tick counter without blocking the normal timer count