| 5 | #include <stdlib.h> |
| 6 | |
| 7 | struct Timer { |
| 8 | TimerHandle_t handle; |
| 9 | timer_callback_t callback; |
| 10 | void* context; |
| 11 | }; |
| 12 | |
| 13 | static void timer_callback_internal(TimerHandle_t xTimer) { |
| 14 | struct Timer* timer = (struct Timer*)pvTimerGetTimerID(xTimer); |
no outgoing calls
no test coverage detected