projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add user callback function to the Bluetooth host demo to filter out connections from...
[pub/USBasp.git]
/
LUFA
/
Drivers
/
Board
/
LEDs.h
diff --git
a/LUFA/Drivers/Board/LEDs.h
b/LUFA/Drivers/Board/LEDs.h
index
36ab3e4
..
c446125
100644
(file)
--- a/
LUFA/Drivers/Board/LEDs.h
+++ b/
LUFA/Drivers/Board/LEDs.h
@@
-53,7
+53,8
@@
* provides an interface to configure, test and change the status of all the board LEDs.
\r
*
\r
* If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
\r
* provides an interface to configure, test and change the status of all the board LEDs.
\r
*
\r
* If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
\r
- * directory. Otherwise, it will include the appropriate built in board driver header file.
\r
+ * directory. Otherwise, it will include the appropriate built in board driver header file. If the BOARD value
\r
+ * is set to BOARD_NONE, this driver is silently disabled.
\r
*
\r
* \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
\r
* a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
\r
*
\r
* \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
\r
* a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
\r
@@
-104,6
+105,12
@@
#include "EVK527/LEDs.h"
\r
#elif (BOARD == BOARD_TEENSY)
\r
#include "TEENSY/LEDs.h"
\r
#include "EVK527/LEDs.h"
\r
#elif (BOARD == BOARD_TEENSY)
\r
#include "TEENSY/LEDs.h"
\r
+ #elif (BOARD == BOARD_USBTINYMKII)
\r
+ #include "USBTINYMKII/LEDs.h"
\r
+ #elif (BOARD == BOARD_BENITO)
\r
+ #include "BENITO/LEDs.h"
\r
+ #elif (BOARD == BOARD_JMDBU2)
\r
+ #include "JMDBU2/LEDs.h"
\r
#elif (BOARD == BOARD_USER)
\r
#include "Board/LEDs.h"
\r
#endif
\r
#elif (BOARD == BOARD_USER)
\r
#include "Board/LEDs.h"
\r
#endif
\r