removed some logging and version bump

This commit is contained in:
2017-08-15 03:14:07 +02:00
parent 2ca8bf1483
commit ca410736f7
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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)
});
}
+2 -2
View File
@@ -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)
});
}
+1 -1
View File
@@ -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