aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/HID/BootloaderHID.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bootloaders not disabling global interrupts during erase and write ↵Dean Camera2017-10-011-4/+10
| | | | operations (thanks to Zoltan).
* Update copyrights for 2017.Dean Camera2017-04-181-2/+2
|
* Restrict HID bootloader programming region (thanks to NicoHood).Dean Camera2017-01-291-1/+9
|
* Update copyrights to 2016.Dean Camera2016-01-311-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-2/+2
|
* Update copyrights for 2014.Dean Camera2014-01-041-3/+3
|
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Clean up unnecessary CPPCheck static analysis suppression comments, force ↵Dean Camera2012-10-141-0/+1
| | | | Doxygen and GCC compiler specific macros as being always undefined when performing a static analysis of the code.
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Use the framework provided GlobalInterruptEnable() function instead of the ↵Dean Camera2012-09-171-1/+1
| | | | AVR8/XMEGA specific sei() macro, for future demo/project portability.
* Reduce bootloader magic key to 16 bits to save FLASH space.Dean Camera2012-07-071-1/+1
|
* Fix bootloaders to make the StaticAnalysis build test happy.Dean Camera2012-05-051-1/+2
|
* The library bootloaders will now correctly start the user application after ↵Dean Camera2012-04-291-0/+25
| | | | a watchdog-based application start, even if the /HWB line is held low externally during the reset phase.
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-141-3/+1
|
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Minor bootloader tweaks; make some functions static where possible to reduce ↵Dean Camera2012-01-151-1/+1
| | | | the compiled binary size, add additional comments to the makefiles.
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-14/+15
| | | | trailing whitespace at the end of each line.
* Add missing SVN eol-style property to files where it was missing.Dean Camera2011-07-151-164/+164
|
* Add new LUFA powered user projects to the documentation.Dean Camera2011-04-231-1/+1
|
* Fix HID class bootloader not working on the larger USB AVRs due to the ↵Dean Camera2011-04-231-1/+9
| | | | altered page addressing scheme.
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-041-2/+2
| | | | | | Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-3/+3
| | | | | | 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.
* Added HID class bootloader, compatible with a modified version of the ↵Dean Camera2011-02-091-0/+156
command line Teensy loader from PJRC.com.