* Free a previously allocated timer */
| 119 | * Free a previously allocated timer |
| 120 | */ |
| 121 | static void free_timer(timer_group_t group, timer_idx_t idx) FL_NOEXCEPT { |
| 122 | taskENTER_CRITICAL(&timer_alloc_mutex); |
| 123 | timer_allocated[group][idx] = false; |
| 124 | taskEXIT_CRITICAL(&timer_alloc_mutex); |
| 125 | } |
| 126 | |
| 127 | // ============================================================================= |
| 128 | // Timer Callback Wrapper |
no outgoing calls
no test coverage detected