diff --git a/esp32_marauder/CommandLine.cpp b/esp32_marauder/CommandLine.cpp index 2f779c74b..c65556ad3 100644 --- a/esp32_marauder/CommandLine.cpp +++ b/esp32_marauder/CommandLine.cpp @@ -109,8 +109,7 @@ void CommandLine::main(uint32_t currentTime) { this->runCommand(input); - if (input != "") - Serial.print("> "); + Serial.print("> "); } LinkedList CommandLine::parseCommand(String input, char* delim) { @@ -278,7 +277,7 @@ void CommandLine::runCommand(String input) { if (input != STOPSCAN_CMD) return; } else - Serial.println("#" + input); + Serial.println("# " + input); LinkedList cmd_args = this->parseCommand(input, " ");