| 618 | static modTimer gInstrumentationTimer; |
| 619 | |
| 620 | void espDebugBreak(txMachine* the, uint8_t stop) |
| 621 | { |
| 622 | if (stop) { |
| 623 | fxCollectGarbage(the); |
| 624 | the->garbageCollectionCount -= 1; |
| 625 | espSampleInstrumentation(NULL, NULL, 0); |
| 626 | } |
| 627 | else |
| 628 | modTimerReschedule(gInstrumentationTimer, 1000, 1000); |
| 629 | } |
| 630 | |
| 631 | void espInitInstrumentation(txMachine *the) |
| 632 | { |
nothing calls this directly
no test coverage detected