From accd8f5730bb474588bfbb2a14d51dbd9ce694f4 Mon Sep 17 00:00:00 2001 From: wallali <612794+wallali@users.noreply.github.com> Date: Sat, 15 Apr 2023 04:11:05 +0100 Subject: [PATCH] Update banner to tell me when i'm using serial output --- esp32_marauder/CommandLine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esp32_marauder/CommandLine.cpp b/esp32_marauder/CommandLine.cpp index 766c091..8253d79 100644 --- a/esp32_marauder/CommandLine.cpp +++ b/esp32_marauder/CommandLine.cpp @@ -9,6 +9,9 @@ void CommandLine::RunSetup() { Serial.println(F("\n\n--------------------------------\n")); Serial.println(F(" ESP32 Marauder \n")); Serial.println(" " + version_number + "\n"); + #ifdef WRITE_PACKETS_SERIAL + Serial.println(F(" >> Serial \n")); + #endif Serial.println(F(" By: justcallmekoko\n")); Serial.println(F("--------------------------------\n\n"));