Searched defs:sw_timer (Results 1 – 1 of 1) sorted by relevance
142 struct sw_timer { struct143 sw_timer_t *stnext; /**< @brief Next timer in the timers list. */ argument144 uint32_t vtime; /**< @brief value of timer */145 uint32_t rtime; /**< @brief remain time. */146 t_timer_callbk ptimer; /**< @brief Timer callback function pointer. */147 void *argument; /**< @brief Timer callback function arguments. */148 uint16_t overflow_flag : 1;149 uint16_t frac_time : 5; /** < @brief fraction time of period [0:31] in terms of us */150 uint16_t cycles : 5; /** < @brief cycles [0:31] number of elapsed cycles of periodic timer */151 …nt16_t rem_time : 5; /** < @brief remainder to be added to the fraction [0:31] in terms of us */[all …]