fix: harden CLI and GPS handling

This commit is contained in:
mikecarper
2026-08-27 17:59:44 -07:00
parent b1f8945e1c
commit 74002db4e5
9 changed files with 192 additions and 94 deletions
+1
View File
@@ -165,6 +165,7 @@ void loop() {
if (len > 0 && command[len - 1] == '\r') { // received complete line
command[len - 1] = 0; // replace newline with C string null terminator
char reply[160];
reply[0] = 0;
the_mesh.handleCommand(0, command, reply); // NOTE: there is no sender_timestamp via serial!
if (reply[0]) {
Serial.print(" -> "); Serial.println(reply);