| 751 | |
| 752 | #ifdef mxDebug |
| 753 | void espDebugBreak(txMachine* the, uint8_t stop) |
| 754 | { |
| 755 | if (stop) { |
| 756 | the->DEBUG_LOOP = 1; |
| 757 | fxCollectGarbage(the); |
| 758 | modInstrumentationAdjust(GarbageCollectionCount, -1); |
| 759 | ((modTimerCallback)the->instrumentationCallback)(NULL, &the, sizeof(the)); |
| 760 | } |
| 761 | else { |
| 762 | the->DEBUG_LOOP = 0; |
| 763 | modTimerReschedule(the->instrumentationTimer, 1000, 1000); |
| 764 | } |
| 765 | } |
| 766 | #endif |
| 767 | |
| 768 | void espInitInstrumentation(txMachine *the) |
nothing calls this directly
no test coverage detected