aboutsummaryrefslogtreecommitdiff
path: root/keyboards/crawlpad/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/crawlpad/keymaps/default/keymap.c')
-rwxr-xr-xkeyboards/crawlpad/keymaps/default/keymap.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/keyboards/crawlpad/keymaps/default/keymap.c b/keyboards/crawlpad/keymaps/default/keymap.c
index ec985739f..c81bb56bd 100755
--- a/keyboards/crawlpad/keymaps/default/keymap.c
+++ b/keyboards/crawlpad/keymaps/default/keymap.c
@@ -76,40 +76,3 @@ void matrix_init_user(void) {
76 DDRB |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7); 76 DDRB |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7);
77 PORTB &= ~(1 << 4) & ~(1 << 5) & ~(1 << 6) & ~(1 << 7); 77 PORTB &= ~(1 << 4) & ~(1 << 5) & ~(1 << 6) & ~(1 << 7);
78} 78}
79
80void matrix_scan_user(void) {
81}
82
83void led_set_user(uint8_t usb_led) {
84
85 if (usb_led & (1 << USB_LED_NUM_LOCK)) {
86
87 } else {
88
89 }
90
91 if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
92
93 } else {
94
95 }
96
97 if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
98
99 } else {
100
101 }
102
103 if (usb_led & (1 << USB_LED_COMPOSE)) {
104
105 } else {
106
107 }
108
109 if (usb_led & (1 << USB_LED_KANA)) {
110
111 } else {
112
113 }
114
115}