| 231 | } |
| 232 | |
| 233 | void resumeInputHandlerTask() { |
| 234 | if (!xHandle || inputHandlerPauseDepth == 0) return; |
| 235 | inputHandlerPauseDepth--; |
| 236 | if (inputHandlerPauseDepth == 0) vTaskResume(xHandle); |
| 237 | } |
| 238 | |
| 239 | bool discardHttpCb(const uint8_t *, size_t, void *) { return true; } |
| 240 |
no outgoing calls
no test coverage detected