aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* USB_CONFIG_ATTR_BUSPOWERED constant renamed to USB_CONFIG_ATTR_RESERVED, as ↵Dean Camera2012-01-021-1/+1
| | | | this was misnamed (thanks to NXP Semiconductors).
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-234-11/+12
| | | | trailing whitespace at the end of each line.
* Add missing const qualifier to bootloader API function parameters.Dean Camera2011-11-282-12/+12
|
* Use the proper "-Wl,--undefined=BootloaderAPI_JumpTable" linker command line ↵Dean Camera2011-11-233-8/+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.).
* Add missing SVN eol-style property to ensure that source code line endings ↵Dean Camera2011-11-094-177/+177
| | | | and converted to the native values on checkout.
* Added User Application APIs to the CDC and DFU class bootloaders.Dean Camera2011-10-117-3/+206
|
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* Seperate out the device demos and project's configuration descriptor ↵Dean Camera2011-07-011-0/+2
| | | | structure definitions to clearly indicate what descriptors belong to which interface.
* Add new "checksource" target to the library makefiles, for automated source ↵Dean Camera2011-06-201-1/+10
| | | | file existance checking.
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-051-1/+1
| | | | to Russian translation services provided by Andrey from Microsin.ru.
* Expand the documentation for each Bootloader to give sample usage ↵Dean Camera2011-06-021-16/+36
| | | | | | instructions for the command line programmer utilities. Fix typo in the HID class bootloader CLI programmer application usage instructions.
* Fixed incorrect signature in the CDC and DFU class bootloaders for the ↵Dean Camera2011-06-011-3/+3
| | | | | | | | ATMEGA8U2. Minor documentation cleanups. Modify the incomplete AudioInputHost demo for mono audio output.
* Make DFU and CDC class bootloaders also toggle the LEDs on command activity ↵Dean Camera2011-04-231-4/+7
| | | | in addition to the periodic flashing.
* Added LED flashing to the CDC and DFU class bootloaders to indicate when ↵Dean Camera2011-04-232-0/+15
| | | | they are running.
* Correct UC3 global interrupt functions.Dean Camera2011-04-081-1/+1
| | | | | | Replace all calls and references to _delay_ms() in the code with the architecture-agnostic Delay_MS() function. Improve code generation for the Delay_MS() function on the AVR8 architecture when called with a constant input.
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-041-16/+16
| | | | | | 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.
* F_CLOCK changed to F_USB to be more descriptive, and applicable on future ↵Dean Camera2011-03-211-7/+7
| | | | architecture ports.
* Oops - Bootloader optimizations to GetDescriptor() don't work, as the ↵Dean Camera2011-03-181-9/+18
| | | | Configuration Descriptor's header does not contain the full length of the descriptor, breaking full enumeration.
* 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-102-24/+24
| | | | | | 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-0/+1
| | | | bootloader.
* Change bootloader makefiles to automatically compute the bootloader starting ↵Dean Camera2011-02-092-4/+6
| | | | address from a flash size and bootloader section size, expressed in KB.
* Oops - fix missing constants in the TempDataLogger FatFS diskio.h header file.Dean Camera2011-02-061-4/+4
| | | | Add const to all project descriptor definitions for safety.
* Tighten up the Bootloader GetDescriptor() function, as the descriptor size ↵Dean Camera2011-02-062-36/+27
| | | | can be extracted from the header after the address has been found.
* Renamed all driver termination *_ShutDown() functions to the more logical ↵Dean Camera2011-01-301-1/+1
| | | | name *_Disable().
* 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).
* Update copyright year on all source files.Dean Camera2011-01-014-8/+8
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-4/+4
| | | | fix incorrect and missing section names.
* Fixed broken USBFOO board drivers due to missing BOARD_USBFOO define.Dean Camera2010-11-301-1/+1
|
* Fixed broken DFU bootloader, added XPLAIN support for bootloader start when ↵Dean Camera2010-11-272-0/+25
| | | | XCK jumpered to ground.
* Fix incorrect ADEFS and CPPDEFS entries in the DFU and CDC class bootloader ↵Dean Camera2010-11-091-2/+2
| | | | makefiles.
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-052-5/+5
| | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
* Added new NO_BLOCK_SUPPORT, NO_EEPROM_BYTE_SUPPORT, NO_FLASH_BYTE_SUPPORT ↵Dean Camera2010-10-291-3/+3
| | | | and NO_LOCK_BYTE_SUPPORT compile time options to the CDC class bootloader.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-284-4/+4
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Add descriptor class, subclass and protocol constants to the class drivers, ↵Dean Camera2010-10-251-3/+3
| | | | | | | | modify all demos to use them where possible. Move out private/internal host class driver constants to the common class driver headers, so that they can be used in the Low Level host mode demos. Ensure all demos, projects and bootloaders use the class driver constants where possible to minimise code repetition.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-136-155/+161
| | | | 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.
* Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵Dean Camera2010-09-301-1/+1
| | | | | | | | | | on the configuration order instead to ensure maximum reliability. Altered all low level device and host mode demos to ensure that endpoints and pipes are configured in ascending order properly. Rewrote all low level host mode demos' configuration descriptor parser code to ensure that pipes are enumerated in ascending order, and to ensure maximum compatibility with devices. Incremented all device mode demo's device descriptor revision numbers to ensure that any descriptor changes are re-fetched on machines which have enumerated previous versions.
* Added CDC functional descriptor structs to the Low Level CDC demos and CDC ↵Dean Camera2010-09-282-12/+12
| | | | | | class bootloader, to improve the readability of the descriptors. Fixed BootloaderCDC project failing on some operating systems due to removed Line Encoding options (thanks to Alexey Belyaev).
* 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).
* Fixed incorrect signature reported in the CDC class bootloader for the ↵Dean Camera2010-09-141-10/+10
| | | | ATMEGA32U2.
* Add the "REQ_" prefix to the DFU class bootloader class-specific request ↵Dean Camera2010-09-122-13/+13
| | | | constants.
* Fix typos in the project overview text files.Dean Camera2010-09-091-1/+1
|
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-311-4/+4
| | | | USB AVR device "series" comprises of.
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-242-4/+5
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).