projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4a4b9d3
)
Add missing U2S board definition, update build tests and documentation.
author
Dean Camera
<dean@fourwalledcubicle.com>
Sat, 22 Jun 2013 11:13:17 +0000
(13:13 +0200)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Sat, 22 Jun 2013 11:13:17 +0000
(13:13 +0200)
BuildTests/BoardDriverTest/BoardDeviceMap.cfg
patch
|
blob
|
blame
|
history
LUFA/Common/BoardTypes.h
patch
|
blob
|
blame
|
history
LUFA/DoxygenPages/ChangeLog.txt
patch
|
blob
|
blame
|
history
LUFA/DoxygenPages/DeviceSupport.txt
patch
|
blob
|
blame
|
history
Maintenance/makefile
patch
|
blob
|
blame
|
history
diff --git
a/BuildTests/BoardDriverTest/BoardDeviceMap.cfg
b/BuildTests/BoardDriverTest/BoardDeviceMap.cfg
index
0d4f16b
..
873013a
100644
(file)
--- a/
BuildTests/BoardDriverTest/BoardDeviceMap.cfg
+++ b/
BuildTests/BoardDriverTest/BoardDeviceMap.cfg
@@
-70,6
+70,7
@@
BOARD_USER = AVR8 : at90usb1287 :
BOARD_XPLAIN = AVR8 : at90usb1287 :
BOARD_XPLAIN_REV1 = AVR8 : at90usb1287 :
BOARD_STANGE_ISP = AVR8 : at90usb162 :
BOARD_XPLAIN = AVR8 : at90usb1287 :
BOARD_XPLAIN_REV1 = AVR8 : at90usb1287 :
BOARD_STANGE_ISP = AVR8 : at90usb162 :
+BOARD_U2S = AVR8 : atmega32u2 :
#
# ----------------- XMEGA Boards -----------------
BOARD_A3BU_XPLAINED = XMEGA : atxmega256a3bu :
#
# ----------------- XMEGA Boards -----------------
BOARD_A3BU_XPLAINED = XMEGA : atxmega256a3bu :
diff --git
a/LUFA/Common/BoardTypes.h
b/LUFA/Common/BoardTypes.h
index
44aa769
..
9fe6b47
100644
(file)
--- a/
LUFA/Common/BoardTypes.h
+++ b/
LUFA/Common/BoardTypes.h
@@
-231,6
+231,9
@@
/** Selects the XMEGA C3 XPLAINED specific board drivers, including the Button and LEDs drivers. */
#define BOARD_C3_XPLAINED 55
/** Selects the XMEGA C3 XPLAINED specific board drivers, including the Button and LEDs drivers. */
#define BOARD_C3_XPLAINED 55
+ /** Selects the U2S specific board drivers, including the Button and LEDs drivers. */
+ #define BOARD_U2S 56
+
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE
diff --git
a/LUFA/DoxygenPages/ChangeLog.txt
b/LUFA/DoxygenPages/ChangeLog.txt
index
e218fe3
..
60dd453
100644
(file)
--- a/
LUFA/DoxygenPages/ChangeLog.txt
+++ b/
LUFA/DoxygenPages/ChangeLog.txt
@@
-13,6
+13,7
@@
* - Added new CONCAT() and CONCAT_EXPANDED() convenience macros
* - Added new Printer Device Class driver
* - Added support for the XMEGA C3 Xplained board
* - Added new CONCAT() and CONCAT_EXPANDED() convenience macros
* - Added new Printer Device Class driver
* - Added support for the XMEGA C3 Xplained board
+ * - Added support for the U2S board (thanks to megal0maniac)
* - Library Applications:
* - Added new Printer class bootloader
* - Added new Mass Storage class bootloader
* - Library Applications:
* - Added new Printer class bootloader
* - Added new Mass Storage class bootloader
diff --git
a/LUFA/DoxygenPages/DeviceSupport.txt
b/LUFA/DoxygenPages/DeviceSupport.txt
index
74d7895
..
93e650c
100644
(file)
--- a/
LUFA/DoxygenPages/DeviceSupport.txt
+++ b/
LUFA/DoxygenPages/DeviceSupport.txt
@@
-115,6
+115,7
@@
* - Olimex AVR-ISP-MK2
* - Paranoid Studio's US2AX (V1, V2 and V3 hardware revisions)
* - PJRC Teensy (1.x and 2.x versions)
* - Olimex AVR-ISP-MK2
* - Paranoid Studio's US2AX (V1, V2 and V3 hardware revisions)
* - PJRC Teensy (1.x and 2.x versions)
+ * - Rickus' U2S
* - Sparkfun U2 Breakout Board
* - Stange ISP Programmer Board
* - TCNISO Blackcat USB JTAG
* - Sparkfun U2 Breakout Board
* - Stange ISP Programmer Board
* - TCNISO Blackcat USB JTAG
diff --git
a/Maintenance/makefile
b/Maintenance/makefile
index
8363fbe
..
974fa91
100644
(file)
--- a/
Maintenance/makefile
+++ b/
Maintenance/makefile
@@
-16,7
+16,7
@@
all:
# Print a list of all filenames and line numbers that exceed an allowed threshold
line-lengths:
# Print a list of all filenames and line numbers that exceed an allowed threshold
line-lengths:
- awk '{ if (length > 1
5
0) { print FILENAME, ":", FNR, "[", length, "]" } }' `find $(LUFA_ROOT) -name *.[ch]`
+ awk '{ if (length > 1
2
0) { print FILENAME, ":", FNR, "[", length, "]" } }' `find $(LUFA_ROOT) -name *.[ch]`
# Generate a header containing all library functions
function-list:
# Generate a header containing all library functions
function-list: