| 95 | } |
| 96 | |
| 97 | rt_err_t rt_lptimer_control(rt_lptimer_t timer, int cmd, void *arg) |
| 98 | { |
| 99 | RT_ASSERT(timer != RT_NULL); |
| 100 | |
| 101 | return rt_timer_control(&timer->timer, cmd, arg); |
| 102 | } |
| 103 | |
| 104 | /* get the next soft lptimer timeout */ |
| 105 | rt_tick_t rt_lptimer_next_timeout_tick(void) |
nothing calls this directly
no test coverage detected