From a68acf1eeb3510bb020b3ab9be2f8f52b15cb4a3 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Tue, 4 May 2021 18:43:25 +0200 Subject: disable debug messages by default - they can still be enabled using magic keys --- matrix.c | 5 +++-- 1 file 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()); -- cgit v1.2.3