diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-03 08:59:12 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-03 08:59:12 +0000 |
| commit | ef50b1b29510574420b5f64ec597b837159b6569 (patch) | |
| tree | ef6d5c7852feb765e3e0c890b94b864d0dce399d /LUFA/Common/BoardTypes.h | |
| parent | af4c635e6c3a63c6d9ff25bf14b5a4f88f22c5f0 (diff) | |
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.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@943 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common/BoardTypes.h')
| -rw-r--r-- | LUFA/Common/BoardTypes.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h index 38d0af14..5d553580 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
|
