aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU/makefile
Commit message (Collapse)AuthorAgeFilesLines
* Documentation: Update copyrights to 2019.Dean Camera2019-01-081-1/+1
|
* Update copyrights for 2018.Dean Camera2018-01-041-1/+1
|
* Update copyrights for 2017.Dean Camera2017-04-181-1/+1
|
* Add LUFA DMBS extension modules, use DMBS in project makefiles.Dean Camera2016-04-031-8/+15
|
* Update copyrights to 2016.Dean Camera2016-01-311-1/+1
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-1/+1
|
* Update copyrights for 2014.Dean Camera2014-01-041-1/+1
|
* Ensure bootloader makefile calculation functions are uniform across all ↵Dean Camera2013-03-181-5/+5
| | | | bootloaders.
* Update and add missing Atmel Studio project description XML files.Dean Camera2013-01-101-3/+3
|
* 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-3/+4
| | | | 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.
* Fixed CDC and DFU bootloaders API page erase and write function failures ↵Dean Camera2012-06-291-2/+2
| | | | (thanks to Martin Lambert).
* Clean up bootloader makefiles to make them a bit more readable.Dean Camera2012-06-261-18/+20
|
* Modify CDC and DFU bootloaders so that the various BootloaderAPI components ↵Dean Camera2012-06-151-4/+9
| | | | are in unique sections and mapped explicitly - this will ensure the API and signature entries are always linked at the correct explicit address.
* Remove unused makefile macro from the DFU bootloader.Dean Camera2012-06-121-1/+0
|
* Clean up bootloader makefile comments.Dean Camera2012-06-091-8/+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-693/+28
| | | | 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.
* Fixed CDC and DFU bootloaders failing to compile when the bootloader section ↵Dean Camera2012-04-141-1/+1
| | | | size is 8KB or more (thanks to Georg Glock).
* 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.
* Added additional bootloader API data to expose the bootloader start address ↵Dean Camera2012-03-291-1/+1
| | | | and class to the DFU and CDC class bootloaders.
* 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/+5
| | | | the compiled binary size, add additional comments to the makefiles.
* Use the proper "-Wl,--undefined=BootloaderAPI_JumpTable" linker command line ↵Dean Camera2011-11-231-1/+1
| | | | parameter in the bootloaders to ensure that the API jump tables are not discarded, rather than the previous C volatile pointer hack (thanks to Opendous Inc.).
* Added User Application APIs to the CDC and DFU class bootloaders.Dean Camera2011-10-111-2/+4
|
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* 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.
* Update HID bootloader loader application to support the VID/PID used by the ↵Dean Camera2011-02-091-0/+1
| | | | bootloader.
* Change bootloader makefiles to automatically compute the bootloader starting ↵Dean Camera2011-02-091-2/+4
| | | | address from a flash size and bootloader section size, expressed in KB.
* Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵Dean Camera2011-01-101-1/+0
| | | | | | | | | | parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk). Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions. Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it. Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov).
* Fix incorrect ADEFS and CPPDEFS entries in the DFU and CDC class bootloader ↵Dean Camera2010-11-091-2/+2
| | | | makefiles.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-24/+25
| | | | tool made by Laszlo Monda
* Added new NO_SOF_EVENTS compile time option, enabled in the bootloaders to ↵Dean Camera2010-10-071-0/+1
| | | | reduce the compiled binary size.
* Added the --suppress-bootloader-mem option to the makefile dfu target, to ↵Dean Camera2010-09-241-1/+1
| | | | | | | | ensure that writes to the bootloader section of the AVR's flash memory are ignored (thanks to Axel Rohde). Fixed incorrect command name for EEPROM memory programming in the makefile dfu-ee target. Makefile whitespace fixes.
* Make project makefiles correctly clean intermeditary build files from ↵Dean Camera2010-09-151-2/+2
| | | | assembly and C++ sources (thanks to Daniel Czigany).
* Fix invocations of avr-size in all makefiles broken on unpatched *nix ↵Dean Camera2010-08-081-1/+4
| | | | systems, due to the recent update to the latest WinAVR makefile template.
* Fixed software application start command broken in the DFU class bootloader ↵Dean Camera2010-08-051-0/+1
| | | | when dfu-programmer is used due to application start address corruption.
* Re-add deleted linker options to the Bootloader makefiles, which was ↵Dean Camera2010-07-311-0/+1
| | | | preventing the compiled application from being shifted into the bootloader section address space.