summaryrefslogtreecommitdiff
path: root/keyboards/xbows/knight/knight.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xbows/knight/knight.c')
-rw-r--r--keyboards/xbows/knight/knight.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/keyboards/xbows/knight/knight.c b/keyboards/xbows/knight/knight.c
index dcc5035d51..cb79d9d584 100644
--- a/keyboards/xbows/knight/knight.c
+++ b/keyboards/xbows/knight/knight.c
@@ -1,23 +1 @@
#include "knight.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) {
- setPinOutput(D1);
- writePinHigh(D1);
- setPinOutput(C7);
- writePinHigh(C7);
-}
-bool led_update_kb(led_t led_state) {
- if(led_update_user(led_state)) {
- writePin(C7, !led_state.caps_lock);
- writePin(D1, !led_state.num_lock);
- }
- return true;
-}