aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/LEDs.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-03-30 09:08:26 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-03-30 09:08:26 +0000
commit3790907f4d302e956bea30a261a72411c98a0d60 (patch)
tree3d7c9f531e43d46db5bdd6f688fca7fde23ad426 /LUFA/Drivers/Board/LEDs.h
parenta8cbe3466b660470b8a34a05996af199827e092c (diff)
downloadlufa-3790907f4d302e956bea30a261a72411c98a0d60.tar.gz
lufa-3790907f4d302e956bea30a261a72411c98a0d60.tar.bz2
lufa-3790907f4d302e956bea30a261a72411c98a0d60.zip
Added board hardware driver support for the Benito programmer.
Diffstat (limited to 'LUFA/Drivers/Board/LEDs.h')
-rw-r--r--LUFA/Drivers/Board/LEDs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/Drivers/Board/LEDs.h b/LUFA/Drivers/Board/LEDs.h
index 9d470a700..884aa7dab 100644
--- 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.
*
* If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
- * directory. Otherwise, it will include the appropriate built in board driver header file.
+ * directory. Otherwise, it will include the appropriate built in board driver header file. If the BOARD value
+ * is set to BOARD_NONE, this driver is silently disabled.
*
* \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
* a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
@@ -106,6 +107,8 @@
#include "TEENSY/LEDs.h"
#elif (BOARD == BOARD_USBTINYMKII)
#include "USBTINYMKII/LEDs.h"
+ #elif (BOARD == BOARD_BENITO)
+ #include "BENITO/LEDs.h"
#elif (BOARD == BOARD_USER)
#include "Board/LEDs.h"
#endif