aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU/BootloaderDFU.c
Commit message (Collapse)AuthorAgeFilesLines
* Reduce bootloader magic key to 16 bits to save FLASH space.Dean Camera2012-07-071-1/+1
|
* 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.
* Switch over Demos, Bootloaders and Projects to the new and improved build ↵Dean Camera2012-06-011-2/+2
| | | | 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.
* 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).
* The library bootloaders will now correctly start the user application after ↵Dean Camera2012-04-291-0/+24
| | | | a watchdog-based application start, even if the /HWB line is held low externally during the reset phase.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* 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-151-2/+2
| | | | 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-4/+5
| | | | trailing whitespace at the end of each line.
* Use the proper "-Wl,--undefined=BootloaderAPI_JumpTable" linker command line ↵Dean Camera2011-11-231-4/+0
| | | | 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-1/+4
|
* 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.
* 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-231-0/+14
| | | | 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.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-17/+17
| | | | | | 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.
* Change bootloader makefiles to automatically compute the bootloader starting ↵Dean Camera2011-02-091-2/+2
| | | | address from a flash size and bootloader section size, expressed in KB.
* Renamed all driver termination *_ShutDown() functions to the more logical ↵Dean Camera2011-01-301-1/+1
| | | | name *_Disable().
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Fixed broken DFU bootloader, added XPLAIN support for bootloader start when ↵Dean Camera2010-11-271-0/+24
| | | | XCK jumpered to ground.
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-051-4/+4
| | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-58/+59
| | | | tool made by Laszlo Monda
* Add the "REQ_" prefix to the DFU class bootloader class-specific request ↵Dean Camera2010-09-121-6/+6
| | | | constants.
* Fixed software application start command broken in the DFU class bootloader ↵Dean Camera2010-08-051-11/+15
| | | | when dfu-programmer is used due to application start address corruption.
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-301-1/+1
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-1/+1
| | | | EN-GB spelling dictionary.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-699/+699
| | | | correctly converted to the target system's native end of line style.
* USB_Init() no longer calls sei() to enable global interrupts - this must now ↵Dean Camera2010-04-281-0/+3
| | | | be done in the user application once all init code has run.
* Fixed DFU bootloader programming not discarding the correct number of filler ↵Dean Camera2010-01-241-2/+2
| | | | bytes from the host when non-aligned programming ranges are specified (thanks to Thomas Bleeker).
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-281-7/+7
|
* Add to the existing CDC Class Driver's CreateStream() function documentation ↵Dean Camera2009-11-291-6/+2
| | | | to explicitly state that the created streams are bidirectional.
* Corrected incorrect signature bytes for the AT90USB82 and added support for ↵Dean Camera2009-09-071-0/+1
| | | | | | the ATMEGAXX2 variant AVRs to the DFU bootloader. Added warning to the EVENT_USB_Device_Connect() and EVENT_USB_Device_Disconnect() events that they may be fired multiple times during device enumeration on the series 2 AVRs.
* Fixed DFU and CDC class bootloaders on the AT90USBXXX2 series USB AVRs.Dean Camera2009-09-061-9/+0
|
* Renamed all library events to properly seperate out Device and Host mode ↵Dean Camera2009-08-051-3/+3
| | | | | | | | events. Changed the firing conditions for some events to ensure that events are fired by their own USB mode only. Remove VBUS events - not needed as the library takes care of VBUS detection and feedback on supported AVRs via the USB_Device_Connected and USB_Device_Disconnected events. Fixed incorrect Host state assignment in the incomplete BluetoothHost demo.
* Added new USB_DeviceState variable to keep track of the current Device mode ↵Dean Camera2009-07-211-32/+47
| | | | | | | | | | | | USB state. Added new Endpoint_ClearStatusStage() convenience function to assist with the status stages of control transfers. Removed vague USB_IsConnected global - test USB_DeviceState or USB_HostState explicitly to gain previous functionality. Removed USB_IsSuspended global - test USB_DeviceState against DEVICE_STATE_Suspended instead. Fixed possible enumeration errors from spinloops which may fail to exit if the USB connection is severed before the exit condition becomes true.
* Added const modifiers to device mode class drivers.Dean Camera2009-06-281-1/+1
| | | | | | Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
* Optimize vendor/product description string display code in MassStorageHost.Dean Camera2009-06-261-1/+1
| | | | | | | | Remove all Host mode class demos other than the CDCHost class driver demo, so that they can be re-added as they are made once the host mode class framework is designed. Fixed USB_Host_SendControlRequest() not re-suspending the USB bus when initial device ready-wait fails. Fixed USB Pad regulator not being disabled on some AVR models when the USB_OPT_REG_DISABLED option is used.
* Re-add signature byte defines to the DFU and CDC class bootloaders -- the ↵Dean Camera2009-06-211-1/+1
| | | | SIGNATURE_x defines in the AVR device header files only exist in a newer version of avr-libc than is in the Debian repositories, causing build issues on Linux.
* Updated bootloaders to use the new main() function layout and remove any ↵Dean Camera2009-06-091-16/+21
| | | | references to the scheduler to keep them in line with the rest of the library.
* Finished CDC device class driver documentation.Dean Camera2009-06-081-2/+4
|
* Converted Host mode demos to schedulerless. Fixed host mode broken due to ↵Dean Camera2009-06-081-2/+2
| | | | earlier Start-of-frame event experiments.
* Fix all device mode demos broken in the recent API changes.Dean Camera2009-05-261-2/+2
| | | | Change USBtoSerial Tx to polling-driven rather than interrupt driven, to ensure more time for the Rx interrupt to be serviced.
* Rewritten event system to remove all macros, to make user code clearer.Dean Camera2009-05-181-2/+2
| | | | | | | | Fixed incorrect ENDPOINT_EPNUM_MASK mask preventing endpoints above EP3 from being selected (thanks to Jonathan Oakley). Removed STREAM_CALLBACK() macro - callbacks now use regular function definitions to clarify user code. Removed DESCRIPTOR_COMPARATOR() macro - comparators should now use regular function definitions to clarify user code.
* USB_HostRequest renamed to USB_ControlRequest, entire control request header ↵Dean Camera2009-04-221-8/+2
| | | | | | | | is now read into USB_ControlRequest in Device mode rather than having the library pass only partially read header data to the application. The USB_UnhandledControlPacket event has had its parameters removed, in favour of accessing the new USB_ControlRequest structure. The Endpoint control stream functions now correctly send a ZLP to the host when less data than requested is sent.
* Removed specialized Endpoint_ClearControl* and Pipe_ClearControl* macros in ↵Dean Camera2009-04-211-21/+21
| | | | favour of the standard Endpoint_Clear* and Pipe_Clear* macros (Atmel have confirmed no effect from setting FIFOCON on control endpoints).