diff options
Diffstat (limited to 'keyboards/gh60/revc/revc.h')
-rw-r--r-- | keyboards/gh60/revc/revc.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/keyboards/gh60/revc/revc.h b/keyboards/gh60/revc/revc.h index 450c59020..a94322ad7 100644 --- a/keyboards/gh60/revc/revc.h +++ b/keyboards/gh60/revc/revc.h | |||
@@ -12,17 +12,17 @@ | |||
12 | * B2 Capslock LED | 12 | * B2 Capslock LED |
13 | * B0 not connected | 13 | * B0 not connected |
14 | */ | 14 | */ |
15 | inline void gh60_caps_led_on(void) { setPinOutput(B2); writePinLow(B2); } | 15 | static inline void gh60_caps_led_on(void) { setPinOutput(B2); writePinLow(B2); } |
16 | inline void gh60_poker_leds_on(void) { setPinOutput(F4); writePinLow(F4); } | 16 | static inline void gh60_poker_leds_on(void) { setPinOutput(F4); writePinLow(F4); } |
17 | inline void gh60_fn_led_on(void) { setPinOutput(F5); writePinLow(F5); } | 17 | static inline void gh60_fn_led_on(void) { setPinOutput(F5); writePinLow(F5); } |
18 | inline void gh60_esc_led_on(void) { setPinOutput(F6); writePinLow(F6); } | 18 | static inline void gh60_esc_led_on(void) { setPinOutput(F6); writePinLow(F6); } |
19 | inline void gh60_wasd_leds_on(void) { setPinOutput(F7); writePinLow(F7); } | 19 | static inline void gh60_wasd_leds_on(void) { setPinOutput(F7); writePinLow(F7); } |
20 | 20 | ||
21 | inline void gh60_caps_led_off(void) { setPinInput(B2); } | 21 | static inline void gh60_caps_led_off(void) { setPinInput(B2); } |
22 | inline void gh60_poker_leds_off(void) { setPinInput(F4); } | 22 | static inline void gh60_poker_leds_off(void) { setPinInput(F4); } |
23 | inline void gh60_fn_led_off(void) { setPinInput(F5); } | 23 | static inline void gh60_fn_led_off(void) { setPinInput(F5); } |
24 | inline void gh60_esc_led_off(void) { setPinInput(F6); } | 24 | static inline void gh60_esc_led_off(void) { setPinInput(F6); } |
25 | inline void gh60_wasd_leds_off(void) { setPinInput(F7); } | 25 | static inline void gh60_wasd_leds_off(void) { setPinInput(F7); } |
26 | 26 | ||
27 | /* GH60 keymap definition macro | 27 | /* GH60 keymap definition macro |
28 | * K2C, K31 and K3C are extra keys for ISO | 28 | * K2C, K31 and K3C are extra keys for ISO |