aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2021-05-04 18:43:25 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2021-05-04 18:43:25 +0200
commita68acf1eeb3510bb020b3ab9be2f8f52b15cb4a3 (patch)
treea26a770a309e4d13368d7e8547927bc7ab71f56a
parent03464fcaa3661d3f8fbc15d0d54e4048538e3e1a (diff)
downloadtmk7637-a68acf1eeb3510bb020b3ab9be2f8f52b15cb4a3.tar.gz
disable debug messages by default - they can still be enabled using magic keys
-rw-r--r--matrix.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/matrix.c b/matrix.c
index 4b0aaed..47623f7 100644
--- a/matrix.c
+++ b/matrix.c
@@ -54,8 +54,9 @@ static bool read_row(uint8_t row);
void matrix_init(void)
{
- debug_enable = true;
- debug_matrix = true;
+ /* Can still be activated with LSHIFT+ET1+ET2+D and LSHIFT+ET1+ET2+X */
+ //debug_enable = true;
+ //debug_matrix = true;
/* this also configures all LED pins and brings them into defined states */
led_set(host_keyboard_leds());