| 92 | } |
| 93 | |
| 94 | void xTimerLoad(xTimer* ent, xSerial* s) |
| 95 | { |
| 96 | xBaseLoad(ent, s); |
| 97 | |
| 98 | s->Read(&ent->state); |
| 99 | s->Read(&ent->secondsLeft); |
| 100 | } |
| 101 | |
| 102 | S32 xTimerEventCB(xBase* from, xBase* to, U32 toEvent, const F32* toParam, xBase* toParamWidget) |
| 103 | { |
no test coverage detected