diff options
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/BoardTypes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h index 7a0dbd62c..50c397d63 100644 --- a/LUFA/Common/BoardTypes.h +++ b/LUFA/Common/BoardTypes.h @@ -95,9 +95,12 @@ * such as the Joystick driver, where the removal would adversely affect the code's operation is still disallowed. */
#define BOARD_NONE 10
- /** Selects the Teensy (all versions) specific board drivers, including the driver for the board LEDs. */
+ /** Selects the Teensy (all versions) specific board drivers, including the driver for the board LEDs. */
#define BOARD_TEENSY 11
+ /** Selects the USBTINY MKII specific board drivers, , including the driver for the board LEDs. */
+ #define BOARD_USBTINYMKII 12
+
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE
|