| 231 | } |
| 232 | |
| 233 | static void doDebugCommand(void *machine, void *refcon, uint8_t *message, uint16_t messageLength) |
| 234 | { |
| 235 | txMachine* the = machine; |
| 236 | |
| 237 | the->debugNotifyOutstanding = false; |
| 238 | |
| 239 | if (!the->debugFragments || !the->debugOnReceive) |
| 240 | return; |
| 241 | |
| 242 | fxDebugCommand(the); |
| 243 | if (the->breakOnStartFlag) { |
| 244 | fxBeginHost(the); |
| 245 | fxDebugger(the, (char *)__FILE__, __LINE__); |
| 246 | fxEndHost(the); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | void fxReceiveLoop(void) |
| 251 | { |
nothing calls this directly
no test coverage detected