aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2014.Dean Camera2014-01-0423-56/+56
|
* Add XMEGA TWI to the ModuleTest build test.Dean Camera2013-08-131-7/+5
|
* Mark the very low RAM devices as being unsupported by the Mass Storage class ↵Dean Camera2013-07-061-4/+0
| | | | bootloader.
* Add missing U2S board definition, update build tests and documentation.Dean Camera2013-06-221-0/+1
|
* Add support for the XMEGA C3 Xplained board.Dean Camera2013-05-201-0/+1
|
* Improve the BoardDriver build test, check for mismatches board hardware ↵Dean Camera2013-05-175-31/+63
| | | | support macros or missing driver macros.
* Add smaller AVR8 targets to the Mass Storage bootloader target list in the ↵Dean Camera2013-03-201-122/+140
| | | | Bootloader build test.
* Enable C++ compatibility check warnings in the ModuleTest build test.Dean Camera2013-03-141-6/+8
|
* Enable Mass Storage bootloader builds in the BootloaderTest build test.Dean Camera2013-03-101-5/+5
|
* Update Bootloader buld test to generate bootloaders using the new Printer ↵Dean Camera2013-03-091-1/+37
| | | | class bootloader. Optimize incomplete Mass Storage bootloader LUFA configuration.
* Remove CPPCheck suppressions for unused functions, disable checking for them ↵Dean Camera2013-02-051-0/+2
| | | | in the StaticAnalysisTest build test as it can't cope with GCC aliasing and mixed library/application code.
* Add code template for the new board hardware information driver.Dean Camera2013-01-272-8/+91
|
* Add support for the Dimex Stange-ISP programmer board (thanks to Gerhard ↵Dean Camera2013-01-191-2/+3
| | | | Wesser).
* Fix up invalid device configurations in the BootloaderTest build test.Dean Camera2013-01-051-2/+0
|
* Update copyright year to 2013.Dean Camera2013-01-0322-33/+33
|
* Remove unsupported devices from the BootloaderTest build test.Dean Camera2013-01-031-4/+0
|
* Clean up unnecessary CPPCheck static analysis suppression comments, force ↵Dean Camera2012-10-141-1/+4
| | | | Doxygen and GCC compiler specific macros as being always undefined when performing a static analysis of the code.
* Minor documentation improvements.Dean Camera2012-10-0511-11/+11
|
* Fixed incorrect Dataflash functionality in the USBKEY board if the driver is ↵Dean Camera2012-09-191-4/+4
| | | | modified for a single Dataflash chip (thanks to Jonathan Oakley).
* Clean up the BoardDriverTest mapping file, fix up USB2AX MCU mappings.Dean Camera2012-09-161-55/+60
|
* Fix up the StaticAnalysis build test so that it does not report invalid ↵Dean Camera2012-09-151-0/+3
| | | | configurations.
* Added support for the Xevelabs USB2AX revision 3.1 board.Dean Camera2012-09-151-0/+2
|
* Update ModuleTest build test to enable new warnings supported in the latest ↵Dean Camera2012-09-091-6/+24
| | | | Atmel Toolchain release's included AVR-GCC version.
* Update LUFA core to be compatible with the AVR-GCC -Wswitch-default warning ↵Dean Camera2012-09-091-1/+1
| | | | switch.
* Update BoardDriverTest to prevent redundant assignment warnings in the ↵Dean Camera2012-09-091-4/+17
| | | | static analysis check.
* Added support for the Arduino Leonardo board. Swap Olimex 32U4 RX/TX LED ↵Dean Camera2012-08-121-0/+1
| | | | masks so that it lines up with the Arduino boards.
* Add help text to the project makefiles to help new users get information on ↵Dean Camera2012-08-113-0/+6
| | | | the improved build system.
* Upgrade Doxygen configuration files to 1.8.1.2.Dean Camera2012-07-291-4/+4
|
* Add OLIMEX AVR-ISP-MK2 board to the BoardDriverTest build test.Dean Camera2012-07-261-0/+1
|
* Extend bootloader build test to include all supported configurations ↵Dean Camera2012-07-242-54/+104
| | | | including the special XPLAIN board configuration and possible F_USB values.
* Add missing supported bootloader configurations to the BootloaderTest build ↵Dean Camera2012-07-231-1/+12
| | | | test.
* Update bootloader build test with bootloader target board information.Dean Camera2012-07-231-2/+2
|
* Add DEBUG_FORMAT and DEBUG_LEVEL optional parameters to the BUILD module. ↵Dean Camera2012-07-154-1/+4
| | | | Turn off generation of debug information when performing a validation build, and when running the build tests.
* Rename build system module makefiles from "lufa.MODULE.in" to ↵Dean Camera2012-07-148-13/+45
| | | | | | | | "lufa_MODULE.mk" to prevent makefile from assuming the include is an old style build rule, slowing down the build process. Prevent the BUILD module from shell-executing multiple processes to determine the avr-size flags to speed up the build, unless the size rule is invoked. Add warnings and set warnings as errors to the SingleUSBModeTest build test makefile.
* Fix project makefiles - remove trailing slash from LUFA_PATH entries and the ↵Dean Camera2012-07-113-6/+6
| | | | XPLAINBridge project AVRISP file include path to prevent build errors.
* Override the OBJDIR setting for the XPLAINBridge project, as this currently ↵Dean Camera2012-07-101-1/+1
| | | | doesn't work. Turn off check-config test in the StaticAnalysisTest build test to save time - if the standard build fails this can be run manually to determine the problem cause.
* Mark build test makefiles as being incompatible with parallel make builds, ↵Dean Camera2012-07-104-0/+10
| | | | as they re-use the same object directories.
* Fix up makefile .NOTPARALLEL heuristics so that linear building is only ↵Dean Camera2012-07-101-0/+1
| | | | enforced if no object folder set and the "all" target is run. Rename library "ConfigDescriptor.c" file to "ConfigDescriptors.c" to ensure that object filenames are unique.
* Don't enforce silent output on submake - pass down the value set by the user ↵Dean Camera2012-06-244-19/+19
| | | | implicitly instead.
* Clean up BuildTest and Maintenance makefiles - use non-recursively evaluated ↵Dean Camera2012-06-235-15/+15
| | | | make variables.
* Add extra human readable output to the build test makefile scripts.Dean Camera2012-06-193-1/+11
|
* Revert change to assembly file comment syntax; this apparently breaks on the ↵Dean Camera2012-06-192-53/+57
| | | | current AVR32 GNU assembler.
* Replace C style comments in assembly code with true assembly comments for ↵Dean Camera2012-06-172-57/+53
| | | | consistency and to prevent it from confusing syntax highlighters.
* Fix broken StaticAnalysisTest build test due to the changes to the CPPCHECK ↵Dean Camera2012-06-101-1/+2
| | | | build module.
* Minor tweak to the BuildTest master makefile for better console output.Dean Camera2012-06-101-0/+4
|
* Fix BoardDriverTest build test clean target.Dean Camera2012-06-101-3/+3
|
* Update SVN line endings property on newer source files to native.Dean Camera2012-06-0717-775/+775
|
* Fix errors in the SingleUSBModeTest build test. Fix logic errors in USBMode.h.Dean Camera2012-06-062-6/+7
|
* Strip out BuildTest sub-makefile contents as much as possible. Remove old ↵Dean Camera2012-06-058-543/+29
| | | | UC3 build test makefile from the ModuleTest build test. Add platform module to the example LUFA makefile.
* Correct BuildTest makefiles to use LUFA_PATH rather than LUFA_ROOT_PATH.Dean Camera2012-06-035-16/+22
|