Browse Source

Add pin initializiation for KBD75 (#5129)

So that the LED indicator actually works
pull/5132/head
Drashna Jaelre 5 years ago
committed by MechMerlin
parent
commit
a08be85780
2 changed files with 10 additions and 0 deletions
  1. +5
    -0
      keyboards/kbdfans/kbd75/rev1/rev1.c
  2. +5
    -0
      keyboards/kbdfans/kbd75/rev2/rev2.c

+ 5
- 0
keyboards/kbdfans/kbd75/rev1/rev1.c View File

@ -10,3 +10,8 @@ void led_set_kb(uint8_t usb_led) {
led_set_user(usb_led);
}
void matrix_init_kb(void) {
setPinOutput(B2);
matrix_init_user();
}

+ 5
- 0
keyboards/kbdfans/kbd75/rev2/rev2.c View File

@ -10,3 +10,8 @@ void led_set_kb(uint8_t usb_led) {
led_set_user(usb_led);
}
void matrix_init_kb(void) {
setPinOutput(B2);
matrix_init_user();
}

Loading…
Cancel
Save