/*\r
LUFA Library\r
- Copyright (C) Dean Camera, 2009.\r
+ Copyright (C) Dean Camera, 2010.\r
\r
dean [at] fourwalledcubicle [dot] com\r
www.fourwalledcubicle.com\r
*/\r
\r
/*\r
- Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
-\r
- Permission to use, copy, modify, and distribute this software\r
- and its documentation for any purpose and without fee is hereby\r
- granted, provided that the above copyright notice appear in all\r
- copies and that both that the copyright notice and this\r
- permission notice and warranty disclaimer appear in supporting\r
- documentation, and that the name of the author not be used in\r
- advertising or publicity pertaining to distribution of the\r
+ Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
+\r
+ Permission to use, copy, modify, distribute, and sell this \r
+ software and its documentation for any purpose is hereby granted\r
+ without fee, provided that the above copyright notice appear in \r
+ all copies and that both that the copyright notice and this\r
+ permission notice and warranty disclaimer appear in supporting \r
+ documentation, and that the name of the author not be used in \r
+ advertising or publicity pertaining to distribution of the \r
software without specific, written prior permission.\r
\r
The author disclaim all warranties with regard to this\r
* \note Do not include this file directly, rather include the Common.h header file instead to gain this file's\r
* functionality.\r
*/\r
+\r
+/** \ingroup Group_Common\r
+ * @defgroup Group_BoardTypes Board Types\r
+ *\r
+ * Macros for indicating the chosen physical board hardware to the library. These macros should be used when\r
+ * defining the BOARD token to the chosen hardware via the -D switch in the project makefile.\r
+ *\r
+ * @{\r
+ */\r
\r
#ifndef __BOARDTYPES_H__\r
#define __BOARDTYPES_H__\r
\r
/* Public Interface - May be used in end-application: */\r
/* Macros: */\r
- /** Selects the USBKEY specific board drivers, including Dataflash, Joystick and LED drivers. */\r
+ /** Selects the USBKEY specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */\r
#define BOARD_USBKEY 0\r
\r
- /** Selects the STK525 specific board drivers, including Dataflash, Joystick and LED drivers. */\r
+ /** Selects the STK525 specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */\r
#define BOARD_STK525 1\r
\r
- /** Selects the STK526 specific board drivers, including Dataflash, Joystick and LED drivers. */\r
+ /** Selects the STK526 specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */\r
#define BOARD_STK526 2\r
\r
/** Selects the RZUSBSTICK specific board drivers, including the driver for the boards LEDs. */\r
*/\r
#define BOARD_USER 5\r
\r
+ /** Selects the BUMBLEB specific board drivers, using the officially recommended peripheral layout. */\r
+ #define BOARD_BUMBLEB 6\r
+ \r
+ /** Selects the XPLAIN (Revision 2 or newer) specific board drivers, including LED and Dataflash driver. */\r
+ #define BOARD_XPLAIN 7\r
+\r
+ /** Selects the XPLAIN (Revision 1) specific board drivers, including LED and Dataflash driver. */\r
+ #define BOARD_XPLAIN_REV1 8\r
+\r
+ /** Selects the EVK527 specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */\r
+ #define BOARD_EVK527 9\r
+\r
#endif\r
+\r
+/** @} */\r