summary refs log tree commit diff
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) {
   DDRB |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7);
   PORTB &= ~(1 << 4) & ~(1 << 5) & ~(1 << 6) & ~(1 << 7);
 }
-
-void matrix_scan_user(void) {
-}
-
-void led_set_user(uint8_t usb_led) {
-
-  if (usb_led & (1 << USB_LED_NUM_LOCK)) {
-
-  } else {
-
-  }
-
-  if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
-
-  } else {
-
-  }
-
-  if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
-
-  } else {
-
-  }
-
-  if (usb_led & (1 << USB_LED_COMPOSE)) {
-
-  } else {
-
-  }
-
-  if (usb_led & (1 << USB_LED_KANA)) {
-
-  } else {
-
-  }
-
-}