diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-04 18:43:25 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-04 18:43:25 +0200 |
commit | a68acf1eeb3510bb020b3ab9be2f8f52b15cb4a3 (patch) | |
tree | a26a770a309e4d13368d7e8547927bc7ab71f56a | |
parent | 03464fcaa3661d3f8fbc15d0d54e4048538e3e1a (diff) | |
download | tmk7637-a68acf1eeb3510bb020b3ab9be2f8f52b15cb4a3.tar.gz |
disable debug messages by default - they can still be enabled using magic keys
-rw-r--r-- | matrix.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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()); |