summaryrefslogtreecommitdiff
path: root/tmk.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk.c')
-rw-r--r--tmk.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/tmk.c b/tmk.c
index 1d4b8fb01..ae138623b 100644
--- a/tmk.c
+++ b/tmk.c
@@ -69,8 +69,11 @@ int main(void)
matrix_init();
matrix_scan();
- // debug on by pressing down any 4 keys during boot time.
- if (matrix_key_count() == 4) print_enable = true;
+ // debug on by pressing down any 4 or more keys during boot time.
+ if (matrix_key_count() >= 4) {
+ print_enable = true;
+ debug_enable = true;
+ }
/* wait for debug pipe ready */
if (print_enable) {
@@ -87,7 +90,7 @@ int main(void)
#endif
}
// print description
- print(XSTR(DESCRIPTION));
+ print(STR(DESCRIPTION) "\n");
while (1) {
proc_matrix();