forked from mfulz_github/qmk_firmware
Add missing U2S board definition, update build tests and documentation.
This commit is contained in:
parent
4a4b9d3051
commit
ed922ff422
|
@ -70,6 +70,7 @@ BOARD_USER = AVR8 : at90usb1287 :
|
||||||
BOARD_XPLAIN = AVR8 : at90usb1287 :
|
BOARD_XPLAIN = AVR8 : at90usb1287 :
|
||||||
BOARD_XPLAIN_REV1 = AVR8 : at90usb1287 :
|
BOARD_XPLAIN_REV1 = AVR8 : at90usb1287 :
|
||||||
BOARD_STANGE_ISP = AVR8 : at90usb162 :
|
BOARD_STANGE_ISP = AVR8 : at90usb162 :
|
||||||
|
BOARD_U2S = AVR8 : atmega32u2 :
|
||||||
#
|
#
|
||||||
# ----------------- XMEGA Boards -----------------
|
# ----------------- XMEGA Boards -----------------
|
||||||
BOARD_A3BU_XPLAINED = XMEGA : atxmega256a3bu :
|
BOARD_A3BU_XPLAINED = XMEGA : atxmega256a3bu :
|
||||||
|
|
|
@ -231,6 +231,9 @@
|
||||||
/** Selects the XMEGA C3 XPLAINED specific board drivers, including the Button and LEDs drivers. */
|
/** Selects the XMEGA C3 XPLAINED specific board drivers, including the Button and LEDs drivers. */
|
||||||
#define BOARD_C3_XPLAINED 55
|
#define BOARD_C3_XPLAINED 55
|
||||||
|
|
||||||
|
/** Selects the U2S specific board drivers, including the Button and LEDs drivers. */
|
||||||
|
#define BOARD_U2S 56
|
||||||
|
|
||||||
#if !defined(__DOXYGEN__)
|
#if !defined(__DOXYGEN__)
|
||||||
#define BOARD_ BOARD_NONE
|
#define BOARD_ BOARD_NONE
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
* - Added new CONCAT() and CONCAT_EXPANDED() convenience macros
|
* - Added new CONCAT() and CONCAT_EXPANDED() convenience macros
|
||||||
* - Added new Printer Device Class driver
|
* - Added new Printer Device Class driver
|
||||||
* - Added support for the XMEGA C3 Xplained board
|
* - Added support for the XMEGA C3 Xplained board
|
||||||
|
* - Added support for the U2S board (thanks to megal0maniac)
|
||||||
* - Library Applications:
|
* - Library Applications:
|
||||||
* - Added new Printer class bootloader
|
* - Added new Printer class bootloader
|
||||||
* - Added new Mass Storage class bootloader
|
* - Added new Mass Storage class bootloader
|
||||||
|
|
|
@ -115,6 +115,7 @@
|
||||||
* - Olimex AVR-ISP-MK2
|
* - Olimex AVR-ISP-MK2
|
||||||
* - Paranoid Studio's US2AX (V1, V2 and V3 hardware revisions)
|
* - Paranoid Studio's US2AX (V1, V2 and V3 hardware revisions)
|
||||||
* - PJRC Teensy (1.x and 2.x versions)
|
* - PJRC Teensy (1.x and 2.x versions)
|
||||||
|
* - Rickus' U2S
|
||||||
* - Sparkfun U2 Breakout Board
|
* - Sparkfun U2 Breakout Board
|
||||||
* - Stange ISP Programmer Board
|
* - Stange ISP Programmer Board
|
||||||
* - TCNISO Blackcat USB JTAG
|
* - TCNISO Blackcat USB JTAG
|
||||||
|
|
|
@ -16,7 +16,7 @@ all:
|
||||||
|
|
||||||
# Print a list of all filenames and line numbers that exceed an allowed threshold
|
# Print a list of all filenames and line numbers that exceed an allowed threshold
|
||||||
line-lengths:
|
line-lengths:
|
||||||
awk '{ if (length > 150) { print FILENAME, ":", FNR, "[", length, "]" } }' `find $(LUFA_ROOT) -name *.[ch]`
|
awk '{ if (length > 120) { print FILENAME, ":", FNR, "[", length, "]" } }' `find $(LUFA_ROOT) -name *.[ch]`
|
||||||
|
|
||||||
# Generate a header containing all library functions
|
# Generate a header containing all library functions
|
||||||
function-list:
|
function-list:
|
||||||
|
|
Loading…
Reference in New Issue