diff options
author | lokher <lokher@gmail.com> | 2023-07-07 09:32:25 +0800 |
---|---|---|
committer | lokher <lokher@gmail.com> | 2023-07-07 09:32:25 +0800 |
commit | 6e6f5936cb21eefe8d515f5fd281e21a113ea0b1 (patch) | |
tree | 350b8baac8c31a29c1d0416014aa168a985e1379 | |
parent | f1b144d48eb3a7b03a1b08521c33ae415716c0b6 (diff) |
Fix left rows keys being pressed on low power wakeup when using eager debounce
-rw-r--r-- | keyboards/keychron/bluetooth/lpm_stm32l432.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keyboards/keychron/bluetooth/lpm_stm32l432.c b/keyboards/keychron/bluetooth/lpm_stm32l432.c index 69db4fc30d..10b64731dd 100644 --- a/keyboards/keychron/bluetooth/lpm_stm32l432.c +++ b/keyboards/keychron/bluetooth/lpm_stm32l432.c @@ -248,6 +248,7 @@ void enter_power_mode(pm_t mode) { lpm_wakeup(); lpm_timer_reset(); report_buffer_init(); + matrix_init(); power_mode = PM_RUN; } |