Merge pull request #44 from Wraul/phantom_fix

Correcting Phantom mistakes
This commit is contained in:
tmk 2013-07-07 22:24:20 -07:00
commit 292dbd51cc
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ Each layout have their own keymap file.
*Note that only the ANSI keymap is tested on actual hardware.* *Note that only the ANSI keymap is tested on actual hardware.*
To customize a keymap: To customize a keymap:
1. Edit the file that corresponds to your layout. 1. Edit the file that corresponds to your layout.
2. Specify your layout when building. 2. Specify your layout when building.

View File

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