summaryrefslogtreecommitdiff
path: root/keyboards/crawlpad
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-09-06 06:36:31 +1000
committerGitHub <noreply@github.com>2021-09-05 21:36:31 +0100
commitfe6d6cf76dc827adb2f46d55217dc189eae21b02 (patch)
treee97fc05d0efb3064a0c89f719cc5df865959d651 /keyboards/crawlpad
parent8a8fdd9a728a4cdc0ddce54fab9bf3b4ff8bf942 (diff)
Remove empty override functions (#14312)
* Remove empty override functions, 0-9 * Remove empty override functions, A-D * Remove empty override functions, E-H * Remove empty override functions, handwired * Remove empty override functions, I-L * Remove empty override functions, M-P * Remove empty override functions, Q-T * Remove empty override functions, U-Z
Diffstat (limited to 'keyboards/crawlpad')
-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 ec985739f1..c81bb56bd5 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}