aboutsummaryrefslogtreecommitdiff
path: root/keyboards/foxlab/key65/hotswap/hotswap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/foxlab/key65/hotswap/hotswap.c')
-rw-r--r--keyboards/foxlab/key65/hotswap/hotswap.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/keyboards/foxlab/key65/hotswap/hotswap.c b/keyboards/foxlab/key65/hotswap/hotswap.c
index 6b3950d36..31fb011ad 100644
--- a/keyboards/foxlab/key65/hotswap/hotswap.c
+++ b/keyboards/foxlab/key65/hotswap/hotswap.c
@@ -15,20 +15,3 @@
15 */ 15 */
16 16
17#include "hotswap.h" 17#include "hotswap.h"
18
19void keyboard_pre_init_kb(void) {
20 led_init_ports();
21 keyboard_pre_init_user();
22}
23
24void led_init_ports(void) {
25 setPinOutput(E6);
26 writePinHigh(E6);
27}
28
29bool led_update_kb(led_t led_state) {
30 if (led_update_user(led_state)) {
31 writePin(E6, !led_state.caps_lock);
32 }
33 return true;
34}