diff options
Diffstat (limited to 'keyboards/helix/rev1/rev1.c')
-rw-r--r-- | keyboards/helix/rev1/rev1.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/helix/rev1/rev1.c b/keyboards/helix/rev1/rev1.c index 309cca010..d053f0de1 100644 --- a/keyboards/helix/rev1/rev1.c +++ b/keyboards/helix/rev1/rev1.c | |||
@@ -7,22 +7,4 @@ | |||
7 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | 7 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { |
8 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); | 8 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); |
9 | } | 9 | } |
10 | |||
11 | void led_set_kb(uint8_t usb_led) { | ||
12 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
13 | led_set_user(usb_led); | ||
14 | } | ||
15 | #endif | 10 | #endif |
16 | |||
17 | void matrix_init_kb(void) { | ||
18 | |||
19 | // // green led on | ||
20 | // DDRD |= (1<<5); | ||
21 | // PORTD &= ~(1<<5); | ||
22 | |||
23 | // // orange led on | ||
24 | // DDRB |= (1<<0); | ||
25 | // PORTB &= ~(1<<0); | ||
26 | |||
27 | matrix_init_user(); | ||
28 | }; | ||