Skip to content

Commit

Permalink
getting closer
Browse files Browse the repository at this point in the history
  • Loading branch information
jstockdale committed Dec 7, 2024
1 parent e082ab7 commit 3ecd280
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions esp32_marauder/CommandLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ void CommandLine::main(uint32_t currentTime) {

this->runCommand(input);

if (input != "")
Serial.print("> ");
Serial.print("> ");
}

LinkedList<String> CommandLine::parseCommand(String input, char* delim) {
Expand Down Expand Up @@ -278,7 +277,7 @@ void CommandLine::runCommand(String input) {
if (input != STOPSCAN_CMD) return;
}
else
Serial.println("#" + input);
Serial.println("# " + input);

LinkedList<String> cmd_args = this->parseCommand(input, " ");

Expand Down

0 comments on commit 3ecd280

Please sign in to comment.