Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
1971a415
Commit
1971a415
authored
Mar 17, 2012
by
Dean Camera
Browse files
Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set (thanks to Sam Lin).
parent
f87aec22
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/DoxygenPages/ChangeLog.txt
View file @
1971a415
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
* the host state machine
* the host state machine
* - Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep)
* - Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep)
* - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid)
* - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid)
* - Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set (thanks to Sam Lin)
* - Library Applications:
* - Library Applications:
* - None
* - None
*
*
...
...
LUFA/Drivers/Board/LEDs.h
View file @
1971a415
...
@@ -109,6 +109,7 @@
...
@@ -109,6 +109,7 @@
#if (BOARD == BOARD_NONE)
#if (BOARD == BOARD_NONE)
static
inline
void
LEDs_Init
(
void
)
{};
static
inline
void
LEDs_Init
(
void
)
{};
static
inline
void
LEDs_Disable
(
void
)
{};
static
inline
void
LEDs_TurnOnLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_TurnOnLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_TurnOffLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_TurnOffLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_SetAllLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_SetAllLEDs
(
const
uint_reg_t
LEDMask
)
{};
...
...
Write
Preview
Supports
Markdown
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