| 257 | } |
| 258 | |
| 259 | void doDebugCommand(void *machine, void *refcon, uint8_t *message, uint16_t messageLength) |
| 260 | { |
| 261 | txMachine* the = machine; |
| 262 | |
| 263 | the->debugNotifyOutstanding = false; |
| 264 | |
| 265 | if (!the->debugFragments) |
| 266 | return; |
| 267 | |
| 268 | fxDebugCommand(the); |
| 269 | if (the->breakOnStartFlag) { |
| 270 | fxBeginHost(the); |
| 271 | fxDebugger(the, (char *)__FILE__, __LINE__); |
| 272 | fxEndHost(the); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | void fxReceiveLoop(void) |
| 277 | { |
nothing calls this directly
no test coverage detected