Browse Source

Fix encoder_init call order in keyboard_init (#19140)

pull/19171/head
Christopher Hoage 1 year ago
committed by GitHub
parent
commit
9b51f02f45
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      quantum/keyboard.c

+ 3
- 3
quantum/keyboard.c View File

@ -353,6 +353,9 @@ void keyboard_init(void) {
#endif
#ifdef SPLIT_KEYBOARD
split_pre_init();
#endif
#ifdef ENCODER_ENABLE
encoder_init();
#endif
matrix_init();
quantum_init();
@ -374,9 +377,6 @@ void keyboard_init(void) {
#ifdef RGBLIGHT_ENABLE
rgblight_init();
#endif
#ifdef ENCODER_ENABLE
encoder_init();
#endif
#ifdef STENO_ENABLE_ALL
steno_init();
#endif


Loading…
Cancel
Save