aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
Commit message (Collapse)AuthorAgeFilesLines
* Commit for the LUFA-120730-BETA release.Dean Camera2012-07-165-9/+9
|
* Minor documentation improvements.Dean Camera2012-07-153-18/+18
|
* Add DEBUG_FORMAT and DEBUG_LEVEL optional parameters to the BUILD module. ↵Dean Camera2012-07-152-12/+30
| | | | Turn off generation of debug information when performing a validation build, and when running the build tests.
* Update makefile template with the new build module filenames.Dean Camera2012-07-142-9/+12
|
* Fix up main library core makefile include paths.Dean Camera2012-07-141-3/+3
|
* Rename build system module makefiles from "lufa.MODULE.in" to ↵Dean Camera2012-07-1411-18/+18
| | | | | | | | "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.
* Rename hid-teensy and hid-teensy-ee targets to teensy and teensy-ee to be in ↵Dean Camera2012-07-142-8/+8
| | | | line with the DFU module target names.
* Fix project makefiles - remove trailing slash from LUFA_PATH entries and the ↵Dean Camera2012-07-112-3/+3
| | | | XPLAINBridge project AVRISP file include path to prevent build errors.
* Fix up makefile .NOTPARALLEL heuristics so that linear building is only ↵Dean Camera2012-07-105-4/+7
| | | | 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.
* Add check and error to the BUILD module if OBJDIR option is set but object ↵Dean Camera2012-07-101-0/+5
| | | | filenames are not unique.
* Fix broken builds when OBJDIR is specified in the BUILD build system module.Dean Camera2012-07-091-2/+2
|
* Remove unnecessary build system modules from the HID EEPROM Loader shim ↵Dean Camera2012-07-091-4/+0
| | | | application makefile.
* Clean up HID EEPROM loader shim application code, simplify project makefile. ↵Dean Camera2012-07-083-13/+25
| | | | Ensure shim application is properly rebuild by explicitly cleaning it before requesting a rebuild.
* Update BUILD build system module with OBJECT_FILES variable, for additional ↵Dean Camera2012-07-085-4/+133
| | | | user-specified object files. Update HID build module with a small shim application to reprogram the EEPROM of a target.
* Minor documentation improvements.Dean Camera2012-07-061-10/+10
|
* Fix LUFA_SRC_PLATFORM makefile variable in the SOURCES build module to use ↵Dean Camera2012-07-052-3/+4
| | | | LUFA_ROOT_PATH rather than LUFA_PATH.
* Fixed incorrect Micropendous board LED driver LEDs_SetAllLEDs() and ↵Dean Camera2012-07-032-2/+3
| | | | LEDs_ChangeLEDs() function implementations (thanks to MitchJS).
* Minor documentation improvements.Dean Camera2012-07-031-0/+3
|
* Fix up non-relative header file include paths (thanks to Kim Blomqvist).Dean Camera2012-07-014-6/+6
|
* Fixed CDC and DFU bootloaders API page erase and write function failures ↵Dean Camera2012-06-291-0/+1
| | | | (thanks to Martin Lambert).
* Fixed invalid configuration descriptor in the low level KeyboardMouse device ↵Dean Camera2012-06-271-0/+1
| | | | demo (thanks to Jun Wako).
* Clean up bootloader makefiles to make them a bit more readable.Dean Camera2012-06-261-1/+1
|
* Add "mostlyclean" makefile target to the BUILD build system module.Dean Camera2012-06-262-4/+16
|
* Make sure dependency files are generated for assembly files too in the BUILD ↵Dean Camera2012-06-241-3/+3
| | | | build system module. Minor code cleanups.
* Fix hard-coded cross-arch utility name in the BUILD build system module.Dean Camera2012-06-241-1/+1
|
* Clean up DOXYGEN and SOURCES build system modules - use non-recursively ↵Dean Camera2012-06-232-43/+43
| | | | evaluated make variables.
* Clean up BUILD build system module, expose "check-source" target for use in ↵Dean Camera2012-06-232-12/+18
| | | | user applications.
* Move out BUILD build system module start and end messages to the respective ↵Dean Camera2012-06-231-4/+2
| | | | targets, as they are only used once.
* Add ability to archive build object files into a .a library file to the ↵Dean Camera2012-06-232-5/+18
| | | | BUILD build system module.
* Oops - fix HID build system module documentation error.Dean Camera2012-06-211-2/+2
|
* Add svn:eol-style property on all source files where it was missing. Fix ↵Dean Camera2012-06-2117-4985/+4985
| | | | line endings of all makefile, *.c and *.h files.
* Add HID bootloader build module (thanks to Stefan Hellermann).Dean Camera2012-06-213-2/+144
|
* Add additional sanity checks to the inputs of several AVR32 platform clock ↵Dean Camera2012-06-211-6/+19
| | | | management driver functions.
* Minor build system improvements - force default shell.Dean Camera2012-06-218-21/+37
|
* Enable GCC's -pipe option by default, to build projects using intermediary ↵Dean Camera2012-06-191-1/+1
| | | | logical OS pipes rather than temporary files on disk.
* Revert change to assembly file comment syntax; this apparently breaks on the ↵Dean Camera2012-06-191-26/+28
| | | | current AVR32 GNU assembler.
* Minor makefile fixes - add phony targets, remove silence switch from the ↵Dean Camera2012-06-181-0/+3
| | | | root makefile and add missing build modules to the ClassDriver VirtualSerial device demo.
* Minor build system improvements - move out AVRDUDE base flags into a ↵Dean Camera2012-06-172-19/+22
| | | | makefile variable, clean up BUILD module.
* Replace C style comments in assembly code with true assembly comments for ↵Dean Camera2012-06-171-28/+26
| | | | consistency and to prevent it from confusing syntax highlighters.
* Add missing <math.h> include for the UC3 devices, hide CDC class driver ↵Dean Camera2012-06-123-3/+8
| | | | stream functions for unsupported platforms.
* Add ability to generate SYM files in the BUILD module. Clean up build system ↵Dean Camera2012-06-114-14/+22
| | | | output to be slightly more human readable.
* Minor documentation improvements.Dean Camera2012-06-103-21/+21
|
* Add checks to the endpoint and pipe configure functions and fail if the ↵Dean Camera2012-06-106-4/+24
| | | | requested endpoint or pipe number is above the maximum for that device.
* Add OBJDIR optional build variable to the BULD build system module, to allow ↵Dean Camera2012-06-102-5/+22
| | | | the user project to relocate the output object and dependency files to a different directory.
* Fix up core library makefile clean target to properly remove dependency files.Dean Camera2012-06-101-3/+3
|
* Make sure the main library core makefile does not interfere with the Doxygen ↵Dean Camera2012-06-101-7/+3
| | | | module configuration if included in a legacy makefile.
* Minor correction to the UC3 USB clock division formula (thanks to Kim ↵Dean Camera2012-06-101-1/+1
| | | | Blomqvist).
* Update CORE build system module to convert the sorted module data lists into ↵Dean Camera2012-06-101-12/+20
| | | | printable lists, substituting in a "(None)" entry when no data is available.
* Add a list of module provided make variables and macros to the build system ↵Dean Camera2012-06-109-38/+304
| | | | modules.
* Add Build System documentation to the library manual. Update CPPCHECK build ↵Dean Camera2012-06-106-14/+590
| | | | system module so that it uses the SRC variable rather than just the project directory.