summaryrefslogtreecommitdiff
path: root/keyboards/hineybush/h87a/keymaps/default
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hineybush/h87a/keymaps/default')
-rw-r--r--keyboards/hineybush/h87a/keymaps/default/keymap.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/keyboards/hineybush/h87a/keymaps/default/keymap.c b/keyboards/hineybush/h87a/keymaps/default/keymap.c
index 8aa116c93e..abca0b199c 100644
--- a/keyboards/hineybush/h87a/keymaps/default/keymap.c
+++ b/keyboards/hineybush/h87a/keymaps/default/keymap.c
@@ -46,24 +46,3 @@ void matrix_scan_user(void) {
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
-
-void led_init_ports(void) {
- DDRD |= (1<<5); // OUT
- DDRE |= (1<<6); // OUT
-}
-
-void led_set_user(uint8_t usb_led) {
-
- if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
- DDRD |= (1 << 5); PORTD &= ~(1 << 5);
- } else {
- DDRD &= ~(1 << 5); PORTD &= ~(1 << 5);
- }
-
- if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
- DDRE |= (1 << 6); PORTE &= ~(1 << 6);
- } else {
- DDRE &= ~(1 << 6); PORTE &= ~(1 << 6);
- }
-
-}