Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
1971a415
Commit
1971a415
authored
13 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set (thanks to Sam Lin).
parent
f87aec22
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LUFA/DoxygenPages/ChangeLog.txt
+1
-0
1 addition, 0 deletions
LUFA/DoxygenPages/ChangeLog.txt
LUFA/Drivers/Board/LEDs.h
+1
-0
1 addition, 0 deletions
LUFA/Drivers/Board/LEDs.h
with
2 additions
and
0 deletions
LUFA/DoxygenPages/ChangeLog.txt
+
1
−
0
View file @
1971a415
...
...
@@ -27,6 +27,7 @@
* 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 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:
* - None
*
...
...
This diff is collapsed.
Click to expand it.
LUFA/Drivers/Board/LEDs.h
+
1
−
0
View file @
1971a415
...
...
@@ -109,6 +109,7 @@
#if (BOARD == BOARD_NONE)
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_TurnOffLEDs
(
const
uint_reg_t
LEDMask
)
{};
static
inline
void
LEDs_SetAllLEDs
(
const
uint_reg_t
LEDMask
)
{};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment