diff options
author | Joel Challis <git@zvecr.com> | 2020-03-06 01:39:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-06 01:39:54 +0000 |
commit | b368db9e027015ba393e87cee416d8d5b2b56a8c (patch) | |
tree | 413707612cca0b75339c9d2a7962e6b5b3bf4046 /keyboards/fortitude60/rev1/rev1.c | |
parent | 76189d9a282cc32bf2ff88a84a6374ebb8908433 (diff) | |
download | qmk_firmware-b368db9e027015ba393e87cee416d8d5b2b56a8c.tar.gz |
Refactor fortitude60 to use split_common (#8113)
Diffstat (limited to 'keyboards/fortitude60/rev1/rev1.c')
-rw-r--r-- | keyboards/fortitude60/rev1/rev1.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/keyboards/fortitude60/rev1/rev1.c b/keyboards/fortitude60/rev1/rev1.c index 5f4cd32f6..520a869e5 100644 --- a/keyboards/fortitude60/rev1/rev1.c +++ b/keyboards/fortitude60/rev1/rev1.c @@ -1,22 +1 @@ #include "rev1.h" - -#ifdef SSD1306OLED -void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - led_set_user(usb_led); -} -#endif - -void matrix_init_kb(void) { - - // // green led on - // DDRD |= (1<<5); - // PORTD &= ~(1<<5); - - // // orange led on - // DDRB |= (1<<0); - // PORTB &= ~(1<<0); - - matrix_init_user(); -}; - |