Fix CAPS_LED logic in Satan (#461)

Needed to invert for proper operation. Previous code had LED on when off
and vice versa.
This commit is contained in:
TerryMathews 2016-06-29 22:33:09 -04:00 committed by Jack Humbert
parent 2d80eee6b8
commit fbf697b9ff
1 changed files with 2 additions and 2 deletions

View File

@ -22,9 +22,9 @@ void led_init_ports(void) {
void led_set_kb(uint8_t usb_led) { void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) { if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// Turn capslock on // Turn capslock on
PORTB |= (1<<2); PORTB &= ~(1<<2);
} else { } else {
// Turn capslock off // Turn capslock off
PORTB &= ~(1<<2); PORTB |= (1<<2);
} }
} }