summaryrefslogtreecommitdiff
path: root/keyboard/phantom/led.c
diff options
context:
space:
mode:
authortmk <wakojun@gmail.com>2013-07-07 22:24:20 -0700
committertmk <wakojun@gmail.com>2013-07-07 22:24:20 -0700
commit292dbd51cc6967d1b98f29b29580f96535ae3ec7 (patch)
tree14d12331b52dcafdf041eb4a03af4e9c796d6748 /keyboard/phantom/led.c
parent8848d0188fe17c184fa968ac011b855a836f2df1 (diff)
parenteef6aa58b752649985cd580c87437bf46805e302 (diff)
Merge pull request #44 from Wraul/phantom_fix
Correcting Phantom mistakes
Diffstat (limited to 'keyboard/phantom/led.c')
-rw-r--r--keyboard/phantom/led.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/phantom/led.c b/keyboard/phantom/led.c
index f4e9108f06..41582b6aaf 100644
--- a/keyboard/phantom/led.c
+++ b/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