| 200 | } |
| 201 | |
| 202 | void doDebugCommand(modTimer timer, void *refcon, int refconSize) |
| 203 | { |
| 204 | txMachine* the = *(txMachine **)refcon; |
| 205 | |
| 206 | if (!((ModdablePebbleAppState)the->state)->debugFragments) |
| 207 | return; |
| 208 | |
| 209 | fxDebugCommand(the); |
| 210 | if (the->breakOnStartFlag) { |
| 211 | fxBeginHost(the); |
| 212 | fxDebugger(the, (char *)__FILE__, __LINE__); |
| 213 | fxEndHost(the); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | void xsbug_protocol_msg_callback(CommSession *session, const uint8_t* msg, size_t length) |
| 218 | { |
nothing calls this directly
no test coverage detected