aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-12-03 08:59:12 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-12-03 08:59:12 +0000
commitbae00a3d42f150482c973a7238f3501ccd026063 (patch)
treeef6d5c7852feb765e3e0c890b94b864d0dce399d /LUFA/Common
parentf1baf12fae61a13e6d8e88655d709d74977322b5 (diff)
downloadlufa-bae00a3d42f150482c973a7238f3501ccd026063.tar.gz
lufa-bae00a3d42f150482c973a7238f3501ccd026063.tar.bz2
lufa-bae00a3d42f150482c973a7238f3501ccd026063.zip
Added support for the Dataflash mounted on the XPLAIN board. Added new XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/BoardTypes.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h
index 38d0af14c..5d5535801 100644
--- a/LUFA/Common/BoardTypes.h
+++ b/LUFA/Common/BoardTypes.h
@@ -80,9 +80,12 @@
/** Selects the BUMBLEB specific board drivers, using the officially recommended peripheral layout. */
#define BOARD_BUMBLEB 6
-
- /** Selects the XPLAIN specific board drivers, including LED driver. */
+
+ /** Selects the XPLAIN (Revision 2 or newer) specific board drivers, including LED and Dataflash driver. */
#define BOARD_XPLAIN 7
+
+ /** Selects the XPLAIN (Revision 1) specific board drivers, including LED and Dataflash driver. */
+ #define BOARD_XPLAIN_REV1 8
#endif