forked from mfulz_github/qmk_firmware
Fix incorrect LED masks for the Olimex 32U4 and Leonardo boards.
This commit is contained in:
parent
e92a9845d3
commit
63fb35f319
|
@ -79,10 +79,10 @@
|
||||||
/* Public Interface - May be used in end-application: */
|
/* Public Interface - May be used in end-application: */
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
/** LED mask for the first LED on the board. */
|
/** LED mask for the first LED on the board. */
|
||||||
#define LEDS_LED1 (1 << 5)
|
#define LEDS_LED1 (1 << 0)
|
||||||
|
|
||||||
/** LED mask for the second LED on the board. */
|
/** LED mask for the second LED on the board. */
|
||||||
#define LEDS_LED2 (1 << 0)
|
#define LEDS_LED2 (1 << 5)
|
||||||
|
|
||||||
/** LED mask for the third LED on the board. */
|
/** LED mask for the third LED on the board. */
|
||||||
#define LEDS_LED3 (1 << 7)
|
#define LEDS_LED3 (1 << 7)
|
||||||
|
|
|
@ -79,10 +79,10 @@
|
||||||
/* Public Interface - May be used in end-application: */
|
/* Public Interface - May be used in end-application: */
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
/** LED mask for the first LED on the board. */
|
/** LED mask for the first LED on the board. */
|
||||||
#define LEDS_LED1 (1 << 5)
|
#define LEDS_LED1 (1 << 0)
|
||||||
|
|
||||||
/** LED mask for the second LED on the board. */
|
/** LED mask for the second LED on the board. */
|
||||||
#define LEDS_LED2 (1 << 0)
|
#define LEDS_LED2 (1 << 5)
|
||||||
|
|
||||||
/** LED mask for the third LED on the board. */
|
/** LED mask for the third LED on the board. */
|
||||||
#define LEDS_LED3 (1 << 6)
|
#define LEDS_LED3 (1 << 6)
|
||||||
|
|
Loading…
Reference in New Issue