summaryrefslogtreecommitdiff
path: root/keyboards/xd68/xd68.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xd68/xd68.c')
-rwxr-xr-xkeyboards/xd68/xd68.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/keyboards/xd68/xd68.c b/keyboards/xd68/xd68.c
index 2a5a52bdae..45e8a2b958 100755
--- a/keyboards/xd68/xd68.c
+++ b/keyboards/xd68/xd68.c
@@ -1,22 +1 @@
#include "xd68.h"
-
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
- matrix_init_user();
- led_init_ports();
-}
-
-void led_init_ports(void) {
- // * Set our LED pins as output
- setPinOutput(B2);
- writePinHigh(B2);
-}
-
-bool led_update_kb(led_t led_state) {
- if(led_update_user(led_state)) {
- writePin(B2, !led_state.caps_lock);
- }
- return true;
-}
-