aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders
Commit message (Collapse)AuthorAgeFilesLines
* 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-043-20/+20
| | | | | | 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-213-21/+21
| | | | architecture ports.
* Oops - Bootloader optimizations to GetDescriptor() don't work, as the ↵Dean Camera2011-03-183-22/+50
| | | | 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-193-3/+15
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Add missing HID bootloader AVRStudio project.Dean Camera2011-02-151-0/+1
|
* Add more const-ness to the stream endpoint/pipe functions where possible.Dean Camera2011-02-131-1/+2
|
* Fix typos in the HID class bootloader makefile.Dean Camera2011-02-111-3/+3
|
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-108-105/+57
| | | | | | 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.
* Fix errors in the hid_bootloader_cli.c program code.Dean Camera2011-02-091-18/+15
|
* Update HID bootloader loader application to support the VID/PID used by the ↵Dean Camera2011-02-096-37/+95
| | | | bootloader.
* Added HID class bootloader, compatible with a modified version of the ↵Dean Camera2011-02-0913-4/+4517
| | | | command line Teensy loader from PJRC.com.
* Change bootloader makefiles to automatically compute the bootloader starting ↵Dean Camera2011-02-093-6/+10
| | | | 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-062-8/+8
| | | | Add const to all project descriptor definitions for safety.
* Tighten up the Bootloader GetDescriptor() function, as the descriptor size ↵Dean Camera2011-02-063-50/+32
| | | | 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-102-2/+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-019-17/+17
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-262-8/+8
| | | | fix incorrect and missing section names.
* Add ORDERED_EP_CONFIG compile time option to the CDC class bootloader, to ↵Dean Camera2010-12-241-0/+1
| | | | reduce the compiled binary size, as the endpoint initialization order is fixed in the code.
* 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.
* Readd incomplete MIDIToneGenerator project, which can now correctly generate ↵Dean Camera2010-11-241-1/+1
| | | | up to three simultaneous notes from MIDI channel 0.
* Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵Dean Camera2010-11-221-2/+2
| | | | value to give maximum throughput.
* Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵Dean Camera2010-11-101-3/+3
| | | | endpoint descriptors (thanks to MCS Electronics).
* Fix incorrect ADEFS and CPPDEFS entries in the DFU and CDC class bootloader ↵Dean Camera2010-11-092-4/+4
| | | | makefiles.
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-053-9/+9
| | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
* Rename new CDC class bootloader NO_LOCK_BYTE_SUPPORT compile time option to ↵Dean Camera2010-10-293-190/+197
| | | | | | NO_LOCK_BYTE_WRITE_SUPPORT as reads are still permitted. Clean up CDC bootloader command processing code.
* Added new NO_BLOCK_SUPPORT, NO_EEPROM_BYTE_SUPPORT, NO_FLASH_BYTE_SUPPORT ↵Dean Camera2010-10-295-30/+59
| | | | 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-2810-10/+10
| | | | 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-252-12/+12
| | | | | | | | 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-1313-312/+325
| | | | tool made by Laszlo Monda
* Added new NO_SOF_EVENTS compile time option, enabled in the bootloaders to ↵Dean Camera2010-10-072-0/+2
| | | | reduce the compiled binary size.
* Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵Dean Camera2010-09-303-8/+8
| | | | | | | | | | 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 board hardware driver support for the Arduino Uno development board.Dean Camera2010-09-281-1/+1
| | | | Fixed incorrect LEDs_ChangeLEDs() function in the Benito board LED driver.
* Added CDC functional descriptor structs to the Low Level CDC demos and CDC ↵Dean Camera2010-09-286-43/+146
| | | | | | 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-242-2/+2
| | | | | | | | 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-152-4/+4
| | | | assembly and C++ sources (thanks to Daniel Czigany).
* Fixed incorrect signature reported in the CDC class bootloader for the ↵Dean Camera2010-09-143-15/+15
| | | | 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-092-2/+2
|
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-312-8/+8
| | | | USB AVR device "series" comprises of.
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-244-12/+14
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
* Fix invocations of avr-size in all makefiles broken on unpatched *nix ↵Dean Camera2010-08-082-2/+8
| | | | 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-053-11/+17
| | | | when dfu-programmer is used due to application start address corruption.
* Hide the PROGMEM attribute from Doxygen, as it appears to confuse the parser ↵Dean Camera2010-08-022-2/+4
| | | | in some situations.
* Re-add deleted linker options to the Bootloader makefiles, which was ↵Dean Camera2010-07-312-0/+2
| | | | preventing the compiled application from being shifted into the bootloader section address space.
* 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-303-3/+3
| | | | EN-GB spelling dictionary.
* Spell check more of the third party libraries used by LUFA.Dean Camera2010-07-301-1/+1
|