diff options
author | Ryan <fauxpark@gmail.com> | 2023-06-27 09:15:33 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 09:15:33 +1000 |
commit | 5542f5ede1356df387dfb10587f2d74e40fa62a8 (patch) | |
tree | 2f2821aefd33fa68f5253facfa1eb55fff26d874 /keyboards/1upkeyboards | |
parent | fa4ea73bf6668832a363da6817d0792c1e16d37a (diff) |
Get rid of `USB_LED_KANA` and `USB_LED_COMPOSE` (#21366)
Diffstat (limited to 'keyboards/1upkeyboards')
-rw-r--r-- | keyboards/1upkeyboards/1up60rgb/keymaps/raffle/keymap.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/keyboards/1upkeyboards/1up60rgb/keymaps/raffle/keymap.c b/keyboards/1upkeyboards/1up60rgb/keymaps/raffle/keymap.c index d0c47c526d..78d00dd06d 100644 --- a/keyboards/1upkeyboards/1up60rgb/keymaps/raffle/keymap.c +++ b/keyboards/1upkeyboards/1up60rgb/keymaps/raffle/keymap.c @@ -71,42 +71,11 @@ layer_state_t layer_state_set_user(layer_state_t state) { return update_tri_layer_state(state, _raise, _rgb, _adjust); } - -// scan matrix -void matrix_scan_user(void) { -} - // support for standard mod state keys (caps lock, scroll lock, etc.) 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)) { DDRB |= (1 << 2); PORTB &= ~(1 << 2); } else { DDRB &= ~(1 << 2); PORTB &= ~(1 << 2); } - - 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 { - - } - } |