Browse Source

fix matrix/noah

refactor_process_record_kb_user
skullY 4 years ago
parent
commit
a18f85c6b6
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      keyboards/matrix/noah/noah.c

+ 6
- 0
keyboards/matrix/noah/noah.c View File

@ -50,6 +50,9 @@ void rgblight_set(void) {
} }
#endif #endif
__attribute__((weak))
void matrix_init_user(void) {}
void matrix_init_kb(void) { void matrix_init_kb(void) {
#ifdef RGBLIGHT_ENABLE #ifdef RGBLIGHT_ENABLE
rgblight_enable(); rgblight_enable();
@ -60,6 +63,9 @@ void matrix_init_kb(void) {
#endif #endif
} }
__attribute__((weak))
void matrix_scan_user(void) {}
void matrix_scan_kb(void) { void matrix_scan_kb(void) {
#ifdef RGBLIGHT_ENABLE #ifdef RGBLIGHT_ENABLE
rgblight_task(); rgblight_task();


Loading…
Cancel
Save