aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/BoardTypes.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-11-23 00:15:58 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-11-23 00:15:58 +0000
commita81ccd83fd3c0bd30909d9faa3a62a4ce3cd4f68 (patch)
treee32a0009ad46d3d80a899798719935e946e6ba83 /LUFA/Common/BoardTypes.h
parent09577fe5418c5237d8392f7acb2d0fdf47fadcdd (diff)
downloadlufa-a81ccd83fd3c0bd30909d9faa3a62a4ce3cd4f68.tar.gz
lufa-a81ccd83fd3c0bd30909d9faa3a62a4ce3cd4f68.tar.bz2
lufa-a81ccd83fd3c0bd30909d9faa3a62a4ce3cd4f68.zip
Added support for version 2 of the Teensy boards (thanks to Christoph Redecker).
Diffstat (limited to 'LUFA/Common/BoardTypes.h')
-rw-r--r--LUFA/Common/BoardTypes.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h
index efd80f9fa..3bb9e5aa9 100644
--- a/LUFA/Common/BoardTypes.h
+++ b/LUFA/Common/BoardTypes.h
@@ -96,7 +96,7 @@
* 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 version 1.x specific board drivers, including the driver for the board LEDs. */
#define BOARD_TEENSY 11
/** Selects the USBTINY MKII specific board drivers, including the Button and LEDs drivers. */
@@ -159,6 +159,9 @@
/** Selects the Atmel XMEGA A3BU Xplained specific board drivers, including Dataflash, Button and LED drivers. */
#define BOARD_A3BU_XPLAINED 31
+ /** Selects the Teensy version 2.x specific board drivers, including the driver for the board LEDs. */
+ #define BOARD_TEENSY 32
+
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE