| 54 | } |
| 55 | |
| 56 | void _serialCmdsTaskLoop(void *pvParameters) { |
| 57 | Serial.begin(115200); |
| 58 | while (1) { |
| 59 | handleSerialCommands(serialCli); |
| 60 | vTaskDelay(pdMS_TO_TICKS(10)); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | void startSerialCommandsHandlerTask(bool initQueues) { |
| 65 | if (initQueues) { |
nothing calls this directly
no test coverage detected