From a5cdadc38cc5d3ec7c379cc560d09945686501d5 Mon Sep 17 00:00:00 2001 From: Erwin Ried <1091420+eried@users.noreply.github.com> Date: Thu, 21 Nov 2019 13:28:59 +0100 Subject: [PATCH] Removing dot from version --- TTyGO/Mode.ino | 2 +- TTyGO/config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TTyGO/Mode.ino b/TTyGO/Mode.ino index 50e0a7d..4b0386c 100644 --- a/TTyGO/Mode.ino +++ b/TTyGO/Mode.ino @@ -11,7 +11,7 @@ State initial_state(char c) { current_cursor.x = 1; return (State) &initial_state; case '\x5': // ENQ (enquiry) - Serial.print(S("TTyGO v.0.0.1")); + Serial.print(S("TTyGO v" VERSION)); return (State) &initial_state; case '\x9': // TAB (horizontal tab) terminal_cursor_move_to_tab(1); diff --git a/TTyGO/config.h b/TTyGO/config.h index 97dab86..11ad66b 100644 --- a/TTyGO/config.h +++ b/TTyGO/config.h @@ -64,7 +64,7 @@ #define str(s) str2(s) #define str2(s) #s -#define TERMINAL_INIT_BANNER "\x1bc\x1b[1;1HTTyGO v." VERSION " " str(SERIAL_BAUDS) "bps\nVT220" WIDECHARSTR " for Arduino\nBy InnovationGarage AS\n" BANNER +#define TERMINAL_INIT_BANNER "\x1bc\x1b[1;1HTTyGO v" VERSION " " str(SERIAL_BAUDS) "bps\nVT220" WIDECHARSTR " for Arduino\nBy InnovationGarage AS\n" BANNER #define TURN_OFF_WIFI_STARTUP DEFAULT_TURN_OFF_WIFI_STARTUP