summaryrefslogtreecommitdiffstats
path: root/keyboards/atom47/atom47.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/atom47/atom47.c')
-rw-r--r--keyboards/atom47/atom47.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/keyboards/atom47/atom47.c b/keyboards/atom47/atom47.c
index 7b839e796..fac22f778 100644
--- a/keyboards/atom47/atom47.c
+++ b/keyboards/atom47/atom47.c
@@ -16,16 +16,9 @@ void matrix_scan_kb(void) {
void led_init_ports(void) {
// * Set our LED pins as output
- DDRB &= ~(1<<5);
+ DDRE |= (1 << 6);
}
void led_set_kb(uint8_t usb_led) {
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTF |= (1<<5);
- } else {
- // Turn capslock off
- PORTF &= ~(1<<5);
- }
- led_set_user(usb_led);
+ led_set_user(usb_led);
}