Fix incorrect Capabilities value in the CDC class Bootloader descriptors.
[pub/USBasp.git] / LUFA / Common / BoardTypes.h
index 9077e56..5ac70fe 100644 (file)
@@ -29,7 +29,7 @@
 */
 
 /** \file
- *  \brief Supported board hardware defines.
+ *  \brief Supported pre-made board hardware defines.
  *
  *  \copydetails Group_BoardTypes
  *
 
 /** \ingroup Group_Common
  *  \defgroup Group_BoardTypes Board Types
- *  \brief Supported board hardware defines.
+ *  \brief Supported pre-made board hardware defines.
  *
- *  Macros for indicating the chosen physical board hardware to the library. These macros should be used when
- *  defining the BOARD token to the chosen hardware via the -D switch in the project makefile.
+ *  Board macros for indicating the chosen physical board hardware to the library. These macros should be used when
+ *  defining the \c BOARD token to the chosen hardware via the \c -D switch in the project makefile. If a custom
+ *  board is used, the \ref BOARD_NONE or \ref BOARD_USER values should be selected.
  *
  *  @{
  */
                        /** Selects the BUMBLEB specific board drivers, using the officially recommended peripheral layout. */
                        #define BOARD_BUMBLEB       6
 
-                       /** Selects the XPLAIN (Revision 2 or newer) specific board drivers, including LED and Dataflash driver. */
+                       /** Selects the XPLAIN (Revision 2 or newer) specific board drivers, including LED and Dataflash drivers. */
                        #define BOARD_XPLAIN        7
 
-                       /** Selects the XPLAIN (Revision 1) specific board drivers, including LED and Dataflash driver. */
+                       /** Selects the XPLAIN (Revision 1) specific board drivers, including LED and Dataflash drivers. */
                        #define BOARD_XPLAIN_REV1   8
 
                        /** Selects the EVK527 specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */
@@ -95,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. */
                        /** Selects the Arduino Uno specific board drivers, including the driver for the board LEDs. */
                        #define BOARD_UNO           18
 
-                       /** Selects the CUL V3 specific board drivers, including the Button and LEDs drivers. */
+                       /** Selects the Busware CUL V3 specific board drivers, including the Button and LEDs drivers. */
                        #define BOARD_CULV3         19
 
                        /** Selects the Blackcat USB JTAG specific board drivers, including the driver for the board LEDs. */
                        /** Selects the Sparkfun ATMEGA8U2 specific board drivers, including the driver for the board LEDs. */
                        #define BOARD_SPARKFUN8U2   26
 
+                       /** Selects the Atmel EVK1101 specific board drivers, including the Button, Joystick and LED drivers. */
+                       #define BOARD_EVK1101       27
+                       
+                       /** Selects the Busware TUL specific board drivers, including the Button and LED drivers. */
+                       #define BOARD_TUL           28
+
+                       /** Selects the Atmel EVK1100 specific board drivers, including the Button, Joystick and LED drivers. */
+                       #define BOARD_EVK1100       29
+
+                       /** Selects the Atmel EVK1104 specific board drivers, including the Button and LED drivers. */
+                       #define BOARD_EVK1104       30
+                       
+                       /** 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_TEENSY2       32
+
+                       /** Selects the USB2AX version 1 and 2 specific board drivers, including the Button and LEDs drivers. */
+                       #define BOARD_USB2AX        33
+
+                       /** Selects the USB2AX version 3 specific board drivers, including the Button and LEDs drivers. */
+                       #define BOARD_USB2AX_V3     34
+
                        #if !defined(__DOXYGEN__)
                                #define BOARD_          BOARD_NONE