Skip to content

Commit

Permalink
Removing dot from version
Browse files Browse the repository at this point in the history
  • Loading branch information
eried committed Nov 21, 2019
1 parent 3c639cc commit a5cdadc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TTyGO/Mode.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion TTyGO/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a5cdadc

Please sign in to comment.