Explorar o código

Fix Phantom scroll lock LED.

Wraul %!s(int64=12) %!d(string=hai) anos
pai
achega
a21359a098
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      keyboard/phantom/led.c

+ 1 - 1
keyboard/phantom/led.c

@@ -37,7 +37,7 @@ void led_set(uint8_t usb_led)
     if (usb_led & (1<<USB_LED_SCROLL_LOCK))
     {
         // Output high.
-        DDRB &= ~(1<<7);
+        DDRB |= (1<<7);
         PORTB |= (1<<7);
     }
     else