aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU
Commit message (Collapse)AuthorAgeFilesLines
* Fixed CDC and DFU bootloaders API page erase and write function failures ↵Dean Camera2012-06-292-2/+4
| | | | (thanks to Martin Lambert).
* Clean up bootloader makefiles to make them a bit more readable.Dean Camera2012-06-261-18/+20
|
* Revert change to assembly file comment syntax; this apparently breaks on the ↵Dean Camera2012-06-191-26/+26
| | | | current AVR32 GNU assembler.
* Re-add in DFU bootloader Manufacturer string, as the dfu-programmer utility ↵Dean Camera2012-06-171-3/+19
| | | | breaks if it is not present.
* Replace C style comments in assembly code with true assembly comments for ↵Dean Camera2012-06-171-26/+26
| | | | consistency and to prevent it from confusing syntax highlighters.
* Modify CDC and DFU bootloaders so that the various BootloaderAPI components ↵Dean Camera2012-06-152-35/+46
| | | | 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
|
* Added new JTAG_ENABLE() macro for the AVR8 architecture. Fixed the ↵Dean Camera2012-06-091-17/+21
| | | | | | JTAG_DISABLE() macro clearing all other bits in MCUSR when called. Moved the XPLAIN board specific bootloader entry condition code to the Application_Jump_Check() function of the DFU bootloader, added support for the original XPLAIN board to the CDC class bootloader.
* 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-012-695/+30
| | | | system.
* Ensure the DFU bootloader disables and clears the activity LED toggle timer ↵Dean Camera2012-05-291-0/+4
| | | | when a soft-reset to application space is used.
* AppConfigHeaders: Merge in latest trunk.Dean Camera2012-05-271-1/+0
|\
| * Remove legacy AS4 project files, now that they can be automatically ↵Dean Camera2012-05-271-1/+0
| | | | | | | | generated by the new maintenance script.
* | AppConfigHeaders: Merge in latest trunk.Dean Camera2012-05-211-2/+9
|\|
| * Turn off watchdog before jumping to the user application in the DFU and CDC ↵Dean Camera2012-05-211-2/+9
| | | | | | | | based bootloaders, for the specific case of /HWB being low during reset (where the bootloader will re-enter).
* | Merge in latest trunk.Dean Camera2012-05-203-32/+64
|\|
| * Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet ↵Dean Camera2012-05-202-25/+19
| | | | | | | | and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.
| * Minor documentation adjustments to the demos, projects and bootloaders to ↵Dean Camera2012-05-181-5/+5
| | | | | | | | ensure correct formatting of application device support.
| * Update project Doxygen and makefiles so that the resulting project ↵Dean Camera2012-05-172-4/+4
| | | | | | | | documentation hides the unused version value, and uses the same HTML CSS stylesheet as the library core.
| * Update CDC and DFU class bootloader documentation with a device memory map ↵Dean Camera2012-05-171-0/+38
| | | | | | | | illustration.
* | AppConfigHeaders: Make sure that in applications using an AppConfig.h ↵Dean Camera2012-05-152-0/+4
| | | | | | | | configuration file, all application headers include the configuration file.
* | AppConfigHeaders: Move out the last of the demo/app configurations into new ↵Dean Camera2012-05-133-9/+51
| | | | | | | | AppConfig.h header files.
* | AppConfigHeaders: Merge in latest trunk.Dean Camera2012-05-132-11/+21
|\|
| * Fixed CDC and DFU bootloaders API function offsets incorrect on some devices ↵Dean Camera2012-05-132-11/+21
| | | | | | | | (thanks to Rod DeMay).
| * Fix broken documentation in the CDC and DFU class bootloaders due to ↵Dean Camera2012-05-101-1/+2
| | | | | | | | Doxygen's confusion over the ATTR_NO_INIT attribute macro.
| * Fixed incorrect DFU version number reported to the host in the DFU ↵Dean Camera2012-05-051-1/+1
| | | | | | | | bootloader descriptors. Fixed incorrect version hundredths value encoding in VERSION_BCD() macro (thanks to Georg Glock).
| * The library bootloaders will now correctly start the user application after ↵Dean Camera2012-04-292-0/+29
| | | | | | | | a watchdog-based application start, even if the /HWB line is held low externally during the reset phase.
| * Alter the bootloader section sizes to all be 8KB, to be in line with the ↵Dean Camera2012-04-182-4/+4
| | | | | | | | 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).
| * Minor documentation improvements.Dean Camera2012-04-151-3/+3
| |
* | AppConfigHeaders: Update bootloaders to use configuration header files, ↵Dean Camera2012-05-104-14/+98
| | | | | | | | rather than makefile defines.
* | Add branch for the conversion of demos to use standard C header files for ↵Dean Camera2012-05-105-5/+34
|/ | | | configuration, rather than makefile defined macros.
* Fixed CDC and DFU bootloaders failing to compile when the bootloader section ↵Dean Camera2012-04-142-15/+35
| | | | 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.
* Clean up Bootloader API tables.Dean Camera2012-04-011-4/+9
|
* Added additional bootloader API data to expose the bootloader start address ↵Dean Camera2012-03-293-15/+29
| | | | 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.
* Fix corrupt Doxygen configuration files, update project names.Dean Camera2012-03-081-47/+61
|
* Update Doxygen configuration files to disable Markdown support.Dean Camera2012-03-081-62/+48
|
* Update Doxygen configuration files for all projects.Dean Camera2012-03-071-107/+356
|
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-241-1/+1
| | | | appropriate and remove/update old documentation.
* Update file contributor copyrights for 2012.Dean Camera2012-02-046-6/+6
|
* Update file header copyrights for 2012.Dean Camera2012-02-046-6/+6
|
* Add API support signature to the CDC and DFU class bootloaders, so that the ↵Dean Camera2012-02-032-7/+18
| | | | application can detect the bootloader's API support.
* Minor documentation improvements.Dean Camera2012-02-011-1/+1
|
* Add missing reference to the BootloaderAPI.S source file in the DFU and CDC ↵Dean Camera2012-01-291-1/+1
| | | | class bootloader AVRStudio 4 project files.
* Fixed DFU class bootloader not resetting the LED pins as high impedance ↵Dean Camera2012-01-291-2/+3
| | | | inputs when a software jump to the user applications is requested.
* Minor bootloader tweaks; make some functions static where possible to reduce ↵Dean Camera2012-01-153-4/+9
| | | | the compiled binary size, add additional comments to the makefiles.