From ca410736f73445f6d78abb06055d2d16a04b320b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Tue, 15 Aug 2017 03:14:07 +0200 Subject: [PATCH] removed some logging and version bump --- Makefile | 2 +- html_orig/js/app.js | 4 ++-- html_orig/jssrc/term.js | 4 ++-- user/user_main.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 6e1a9d1..f0c38ec 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ CFLAGS += -DADMIN_PASSWORD=$(ADMIN_PASSWORD) # Debug logging CFLAGS += -DDEBUG_ANSI=1 -CFLAGS += -DDEBUG_INPUT=1 +CFLAGS += -DDEBUG_INPUT=0 # linker flags used to generate the main object file LDFLAGS = -nostdlib -Wl,--no-check-sections -u call_user_start -Wl,-static diff --git a/html_orig/js/app.js b/html_orig/js/app.js index f499255..ac32efb 100644 --- a/html_orig/js/app.js +++ b/html_orig/js/app.js @@ -1922,7 +1922,7 @@ var Input = (function() { if (evt.key) str = evt.key; else if (evt.which) str = String.fromCodePoint(evt.which); if (str.length>0 && str.charCodeAt(0) >= 32) { - console.log("Typed ", str); +// console.log("Typed ", str); sendStrMsg(str); } }); @@ -1972,7 +1972,7 @@ var Input = (function() { } key(combo, function (e) { e.preventDefault(); - console.log(combo); +// console.log(combo); sendStrMsg(str) }); } diff --git a/html_orig/jssrc/term.js b/html_orig/jssrc/term.js index af7d925..c4331fe 100644 --- a/html_orig/jssrc/term.js +++ b/html_orig/jssrc/term.js @@ -370,7 +370,7 @@ var Input = (function() { if (evt.key) str = evt.key; else if (evt.which) str = String.fromCodePoint(evt.which); if (str.length>0 && str.charCodeAt(0) >= 32) { - console.log("Typed ", str); +// console.log("Typed ", str); sendStrMsg(str); } }); @@ -420,7 +420,7 @@ var Input = (function() { } key(combo, function (e) { e.preventDefault(); - console.log(combo); +// console.log(combo); sendStrMsg(str) }); } diff --git a/user/user_main.h b/user/user_main.h index abb4f38..5f5ad7d 100644 --- a/user/user_main.h +++ b/user/user_main.h @@ -1,7 +1,7 @@ #ifndef USER_MAIN_H_H #define USER_MAIN_H_H -#define FIRMWARE_VERSION "0.6.6+" GIT_HASH +#define FIRMWARE_VERSION "0.6.7+" GIT_HASH #define TERMINAL_GITHUB_REPO "https://github.com/MightyPork/esp-vt100-firmware" #endif //USER_MAIN_H_H