From b83e3ae556239b4aa6f2c4db20535c536692eb3b Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Wed, 1 Jan 2020 22:42:04 -0800 Subject: [PATCH] [Keyboard] Ergodox EZ - Re-init ISSI driver on reconnect (#7731) --- keyboards/ergodox_ez/matrix.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index 4f11a0ad5..c70772938 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c @@ -122,6 +122,9 @@ uint8_t matrix_scan(void) { } else { print("left side attached\n"); ergodox_blink_all_leds(); +#ifdef RGB_MATRIX_ENABLE + rgb_matrix_init(); // re-init driver on reconnect +#endif } } }