aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/HID/makefile
Commit message (Collapse)AuthorAgeFilesLines
* Ensure bootloader makefile calculation functions are uniform across all ↵Dean Camera2013-03-181-1/+1
| | | | bootloaders.
* Update and add missing Atmel Studio project description XML files.Dean Camera2013-01-101-2/+2
|
* Update copyright year to 2013.Dean Camera2013-01-031-1/+1
|
* Remove dependency on the "bc" command line calculator tool in the ↵Dean Camera2012-11-101-2/+3
| | | | bootloaders to make compiling on Windows easier with only MinGW.
* Add help text to the project makefiles to help new users get information on ↵Dean Camera2012-08-111-0/+2
| | | | the improved build system.
* Rename build system module makefiles from "lufa.MODULE.in" to ↵Dean Camera2012-07-141-7/+7
| | | | | | | | "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-111-1/+1
| | | | XPLAINBridge project AVRISP file include path to prevent build errors.
* Clean up bootloader makefiles to make them a bit more readable.Dean Camera2012-06-261-12/+12
|
* Clean up bootloader makefile comments.Dean Camera2012-06-091-9/+6
|
* Add new ATPROGRAM build system module. Add ATPROGRAM and CPPCHECK modules to ↵Dean Camera2012-06-041-0/+2
| | | | all application makefiles.
* Clean up CORE build system module, use simple rather than recursive make ↵Dean Camera2012-06-021-4/+4
| | | | variables for internal constants and $(shell) derived values.
* Switch over Demos, Bootloaders and Projects to the new and improved build ↵Dean Camera2012-06-011-694/+32
| | | | system.
* Merge in latest trunk.Dean Camera2012-05-201-1/+1
|\
| * Update project Doxygen and makefiles so that the resulting project ↵Dean Camera2012-05-171-1/+1
| | | | | | | | documentation hides the unused version value, and uses the same HTML CSS stylesheet as the library core.
| * Alter the bootloader section sizes to all be 8KB, to be in line with the ↵Dean Camera2012-04-181-1/+1
| | | | | | | | default AT90USB1287 fuses, as that is the default target MCU. Add instructions to the documentation to clarify this for the user (thanks to Georg Glock).
* | AppConfigHeaders: Update bootloaders to use configuration header files, ↵Dean Camera2012-05-101-12/+2
| | | | | | | | rather than makefile defines.
* | Add branch for the conversion of demos to use standard C header files for ↵Dean Camera2012-05-101-1/+1
|/ | | | configuration, rather than makefile defined macros.
* Make Doxygen fail for any Doxygen output other than unsupported tags (as ↵Dean Camera2012-04-091-1/+1
| | | | | | these are somewhat benign). Improve exclusion list for the main library export_tar rule to exclude any compiled library files from the export.
* Only abort Doxygen documentation generation if a non-unsupported tag warning ↵Dean Camera2012-03-091-1/+1
| | | | is encountered.
* Update Doxygen documentation build scripts to fail if any warnings are ↵Dean Camera2012-03-091-1/+3
| | | | generated.
* Minor bootloader tweaks; make some functions static where possible to reduce ↵Dean Camera2012-01-151-0/+4
| | | | the compiled binary size, add additional comments to the makefiles.
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* Add missing SVN eol-style property to files where it was missing.Dean Camera2011-07-151-712/+712
|
* Add new "checksource" target to the library makefiles, for automated source ↵Dean Camera2011-06-201-1/+10
| | | | file existance checking.
* F_CLOCK changed to F_USB to be more descriptive, and applicable on future ↵Dean Camera2011-03-211-7/+7
| | | | architecture ports.
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-1/+5
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-1/+2
| | | | | | to the same module as they are declared in. Tighten up the HID class bootloader code slightly, document that it currently exceeds 2KB of bootloader space for all models other than the Series 2 USB AVRs.
* Update HID bootloader loader application to support the VID/PID used by the ↵Dean Camera2011-02-091-6/+1
| | | | bootloader.
* Added HID class bootloader, compatible with a modified version of the ↵Dean Camera2011-02-091-0/+703
command line Teensy loader from PJRC.com.