| 10 | TaskHandle_t serialcmdsTaskHandle; |
| 11 | |
| 12 | struct CmdPacket { |
| 13 | char text[512]; // command size |
| 14 | }; |
| 15 | bool parseSerialCommand(const String &command, bool waitForResponse) { |
| 16 | if (!cmdQueue || !rspQueue) { |
| 17 | Serial.println("Command or response queue not initialized"); |
nothing calls this directly
no outgoing calls
no test coverage detected