diff options
Diffstat (limited to 'keyboards/xd84/xd84.c')
-rw-r--r-- | keyboards/xd84/xd84.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/xd84/xd84.c b/keyboards/xd84/xd84.c index eaf531421..dec4ef95e 100644 --- a/keyboards/xd84/xd84.c +++ b/keyboards/xd84/xd84.c | |||
@@ -14,19 +14,3 @@ | |||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | */ | 15 | */ |
16 | #include "xd84.h" | 16 | #include "xd84.h" |
17 | |||
18 | void keyboard_pre_init_kb(void) { | ||
19 | setPinOutput(B6); | ||
20 | |||
21 | keyboard_pre_init_user(); | ||
22 | } | ||
23 | |||
24 | void led_set_kb(uint8_t usb_led) { | ||
25 | if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) { | ||
26 | writePinLow(B6); | ||
27 | } else { | ||
28 | writePinHigh(B6); | ||
29 | } | ||
30 | |||
31 | led_set_user(usb_led); | ||
32 | } | ||