summaryrefslogtreecommitdiff
path: root/keyboards/xd60/xd60.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-04-09 08:58:11 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-09 08:58:11 -0700
commitb6850bc043b1d129042f47501f0a1dc1e196f962 (patch)
treea0a772f278c3c494db3bc69103955af5561e1cae /keyboards/xd60/xd60.c
parent19ed62114a1f5d20aacb9cbe83105e977b9a2971 (diff)
remove all keyboards but ergodox and planck
Diffstat (limited to 'keyboards/xd60/xd60.c')
-rw-r--r--keyboards/xd60/xd60.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/keyboards/xd60/xd60.c b/keyboards/xd60/xd60.c
deleted file mode 100644
index c3b63e5eaf..0000000000
--- a/keyboards/xd60/xd60.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "xd60.h"
-
-
-extern inline void xd60_caps_led_on(void);
-extern inline void xd60_bl_led_on(void);
-
-extern inline void xd60_caps_led_off(void);
-extern inline void xd60_bl_led_off(void);
-
-
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
-
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- xd60_caps_led_on();
- } else {
- xd60_caps_led_off();
- }
-
- // if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- // xd60_esc_led_on();
- // } else {
- // xd60_esc_led_off();
- // }
-
- // if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- // xd60_fn_led_on();
- // } else {
- // xd60_fn_led_off();
- // }
-
- led_set_user(usb_led);
-}