| 22 | } |
| 23 | |
| 24 | void timerCallback3(MultiTimer* timer, void* userData) { |
| 25 | printf("Timer 3 (one-shot) fired at %lu ms\n", getPlatformTicks()); |
| 26 | } |
| 27 | |
| 28 | void timerCallback4(MultiTimer* timer, void* userData) { |
| 29 | printf("Timer 4 is stopping Timer 1 at %lu ms\n", getPlatformTicks()); |
nothing calls this directly
no test coverage detected