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