* Handler to pump events during a run. */
| 61 | * Handler to pump events during a run. |
| 62 | */ |
| 63 | void InterruptCallbackHandler(sml::smlSystemEventId /*id*/, void* userdata, sml::Kernel* kernel) |
| 64 | { |
| 65 | CommandProcessor* cmd = reinterpret_cast<CommandProcessor*>(userdata); |
| 66 | cmd->update(); |
| 67 | kernel->CheckForIncomingCommands(); |
| 68 | } |
| 69 |
nothing calls this directly
no test coverage detected