MCPcopy Create free account
hub / github.com/bmorcelli/Launcher / pauseInputHandlerTask

Function pauseInputHandlerTask

src/onlineLauncher.cpp:228–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226static uint8_t inputHandlerPauseDepth = 0;
227
228void pauseInputHandlerTask() {
229 if (!xHandle) return;
230 if (inputHandlerPauseDepth++ == 0) vTaskSuspend(xHandle);
231}
232
233void resumeInputHandlerTask() {
234 if (!xHandle || inputHandlerPauseDepth == 0) return;

Callers 6

flashRawRangeFromHttpFunction · 0.85
installFirmwareDynamicFunction · 0.85
getInfoFunction · 0.85
downloadFirmwareFunction · 0.85
installFirmwareFunction · 0.85
installFAT_OTAFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected