Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
63fb35f3
Commit
63fb35f3
authored
Aug 12, 2012
by
Dean Camera
Browse files
Fix incorrect LED masks for the Olimex 32U4 and Leonardo boards.
parent
e92a9845
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h
View file @
63fb35f3
...
...
@@ -79,10 +79,10 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** 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. */
#define LEDS_LED2 (1 <<
0
)
#define LEDS_LED2 (1 <<
5
)
/** LED mask for the third LED on the board. */
#define LEDS_LED3 (1 << 7)
...
...
LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h
View file @
63fb35f3
...
...
@@ -79,10 +79,10 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** 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. */
#define LEDS_LED2 (1 <<
0
)
#define LEDS_LED2 (1 <<
5
)
/** LED mask for the third LED on the board. */
#define LEDS_LED3 (1 << 6)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment