X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/071fd8ce536522ca6365580d64cd465e4c18a031..e55f33866334615e705ff68c0f3bea8e5b1b9b8b:/LUFA/Common/BoardTypes.h diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h index 10e31ac1b..700da980c 100644 --- a/LUFA/Common/BoardTypes.h +++ b/LUFA/Common/BoardTypes.h @@ -29,6 +29,7 @@ */ /** \file + * \brief Supported board hardware defines. * * This file contains constants which can be passed to the compiler (via setting the macro BOARD) in the * user project makefile using the -D option to configure the library board-specific drivers. @@ -94,6 +95,18 @@ * 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. */ + #define BOARD_TEENSY 11 + + /** Selects the USBTINY MKII specific board drivers, including the Button and LEDs drivers. */ + #define BOARD_USBTINYMKII 12 + + /** Selects the Benito specific board drivers, including the Button and LEDs drivers. */ + #define BOARD_BENITO 13 + + /** Selects the JM-DB-U2 specific board drivers, including the Button and LEDs drivers. */ + #define BOARD_JMDBU2 14 + #if !defined(__DOXYGEN__) #define BOARD_ BOARD_NONE