* @brief Stops a timer. * * This system call stops the specified timer, halting its countdown and * preventing it from triggering further callbacks. If the timer is periodic, * stopping it will prevent further periodic triggers until it is started again. * * @param[in] timer The handle to the timer to be stopped. Must be a valid `rt_timer_t` object. * * @return sysret_t Returns a status
| 2965 | * the timer during active use. |
| 2966 | */ |
| 2967 | sysret_t sys_rt_timer_stop(rt_timer_t timer) |
| 2968 | { |
| 2969 | return rt_timer_stop(timer); |
| 2970 | } |
| 2971 | |
| 2972 | /** |
| 2973 | * @brief Controls various properties of a timer. |
nothing calls this directly
no test coverage detected