Set up the callback function and parameter
| 444 | |
| 445 | // Set up the callback function and parameter |
| 446 | void StepTimer::SetCallback(TimerCallbackFunction cb, CallbackParameter param) noexcept |
| 447 | { |
| 448 | callback = cb; |
| 449 | cbParam = param; |
| 450 | } |
| 451 | |
| 452 | // Schedule a callback at a particular tick count, returning true if it was not scheduled because it is already due or imminent. |
| 453 | bool StepTimer::ScheduleCallbackFromIsr(Ticks when) noexcept |
no outgoing calls
no test coverage detected