Parcourir la source

Merge pull request #44 from Wraul/phantom_fix

Correcting Phantom mistakes
tags/v1.9
tmk il y a 11 ans
Parent
révision
292dbd51cc
2 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 1
    0
      keyboard/phantom/README.md
  2. 1
    1
      keyboard/phantom/led.c

+ 1
- 0
keyboard/phantom/README.md Voir le fichier

@@ -48,6 +48,7 @@ Each layout have their own keymap file.
*Note that only the ANSI keymap is tested on actual hardware.*

To customize a keymap:

1. Edit the file that corresponds to your layout.
2. Specify your layout when building.


+ 1
- 1
keyboard/phantom/led.c Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer