Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing SVN eol-style property to files where it was missing. | Dean Camera | 2011-07-15 | 7 | -2847/+2847 |
| | |||||
* | Remove custom CDC class descriptor definitions from the CDC bootloader, and ↵ | Dean Camera | 2011-07-01 | 2 | -40/+6 |
| | | | | switch it to use the CDC Class Driver descriptor definitions. | ||||
* | Seperate out the device demos and project's configuration descriptor ↵ | Dean Camera | 2011-07-01 | 3 | -0/+8 |
| | | | | structure definitions to clearly indicate what descriptors belong to which interface. | ||||
* | Add new "checksource" target to the library makefiles, for automated source ↵ | Dean Camera | 2011-06-20 | 3 | -3/+30 |
| | | | | file existance checking. | ||||
* | Massive corrections to the project documentation and code comments, thanks ↵ | Dean Camera | 2011-06-05 | 2 | -5/+5 |
| | | | | to Russian translation services provided by Andrey from Microsin.ru. | ||||
* | Expand the documentation for each Bootloader to give sample usage ↵ | Dean Camera | 2011-06-02 | 4 | -20/+86 |
| | | | | | | 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 Camera | 2011-06-01 | 2 | -6/+6 |
| | | | | | | | | ATMEGA8U2. Minor documentation cleanups. Modify the incomplete AudioInputHost demo for mono audio output. | ||||
* | Add new LUFA powered user projects to the documentation. | Dean Camera | 2011-04-23 | 1 | -1/+1 |
| | |||||
* | Fix HID class bootloader not working on the larger USB AVRs due to the ↵ | Dean Camera | 2011-04-23 | 1 | -1/+9 |
| | | | | altered page addressing scheme. | ||||
* | Make DFU and CDC class bootloaders also toggle the LEDs on command activity ↵ | Dean Camera | 2011-04-23 | 2 | -4/+10 |
| | | | | in addition to the periodic flashing. | ||||
* | Added LED flashing to the CDC and DFU class bootloaders to indicate when ↵ | Dean Camera | 2011-04-23 | 4 | -0/+30 |
| | | | | they are running. | ||||
* | Correct UC3 global interrupt functions. | Dean Camera | 2011-04-08 | 1 | -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 Camera | 2011-04-04 | 3 | -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 Camera | 2011-03-21 | 3 | -21/+21 |
| | | | | architecture ports. | ||||
* | Oops - Bootloader optimizations to GetDescriptor() don't work, as the ↵ | Dean Camera | 2011-03-18 | 3 | -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 Camera | 2011-02-19 | 3 | -3/+15 |
| | | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support. | ||||
* | Add missing HID bootloader AVRStudio project. | Dean Camera | 2011-02-15 | 1 | -0/+1 |
| | |||||
* | Add more const-ness to the stream endpoint/pipe functions where possible. | Dean Camera | 2011-02-13 | 1 | -1/+2 |
| | |||||
* | Fix typos in the HID class bootloader makefile. | Dean Camera | 2011-02-11 | 1 | -3/+3 |
| | |||||
* | Add static keyword to all project globals whose scope should be restricted ↵ | Dean Camera | 2011-02-10 | 8 | -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 Camera | 2011-02-09 | 1 | -18/+15 |
| | |||||
* | Update HID bootloader loader application to support the VID/PID used by the ↵ | Dean Camera | 2011-02-09 | 6 | -37/+95 |
| | | | | bootloader. | ||||
* | Added HID class bootloader, compatible with a modified version of the ↵ | Dean Camera | 2011-02-09 | 13 | -4/+4517 |
| | | | | command line Teensy loader from PJRC.com. | ||||
* | Change bootloader makefiles to automatically compute the bootloader starting ↵ | Dean Camera | 2011-02-09 | 3 | -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 Camera | 2011-02-06 | 2 | -8/+8 |
| | | | | Add const to all project descriptor definitions for safety. | ||||
* | Tighten up the Bootloader GetDescriptor() function, as the descriptor size ↵ | Dean Camera | 2011-02-06 | 3 | -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 Camera | 2011-01-30 | 1 | -1/+1 |
| | | | | name *_Disable(). | ||||
* | Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵ | Dean Camera | 2011-01-10 | 2 | -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 Camera | 2011-01-01 | 9 | -17/+17 |
| | |||||
* | Documentation improvements - put driver example code into its own section, ↵ | Dean Camera | 2010-12-26 | 2 | -8/+8 |
| | | | | fix incorrect and missing section names. | ||||
* | Add ORDERED_EP_CONFIG compile time option to the CDC class bootloader, to ↵ | Dean Camera | 2010-12-24 | 1 | -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 Camera | 2010-11-30 | 1 | -1/+1 |
| | |||||
* | Fixed broken DFU bootloader, added XPLAIN support for bootloader start when ↵ | Dean Camera | 2010-11-27 | 2 | -0/+25 |
| | | | | XCK jumpered to ground. | ||||
* | Readd incomplete MIDIToneGenerator project, which can now correctly generate ↵ | Dean Camera | 2010-11-24 | 1 | -1/+1 |
| | | | | up to three simultaneous notes from MIDI channel 0. | ||||
* | Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵ | Dean Camera | 2010-11-22 | 1 | -2/+2 |
| | | | | value to give maximum throughput. | ||||
* | Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵ | Dean Camera | 2010-11-10 | 1 | -3/+3 |
| | | | | endpoint descriptors (thanks to MCS Electronics). | ||||
* | Fix incorrect ADEFS and CPPDEFS entries in the DFU and CDC class bootloader ↵ | Dean Camera | 2010-11-09 | 2 | -4/+4 |
| | | | | makefiles. | ||||
* | Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵ | Dean Camera | 2010-11-05 | 3 | -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 Camera | 2010-10-29 | 3 | -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 Camera | 2010-10-29 | 5 | -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 Camera | 2010-10-28 | 10 | -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 Camera | 2010-10-25 | 2 | -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 Camera | 2010-10-13 | 13 | -312/+325 |
| | | | | tool made by Laszlo Monda | ||||
* | Added new NO_SOF_EVENTS compile time option, enabled in the bootloaders to ↵ | Dean Camera | 2010-10-07 | 2 | -0/+2 |
| | | | | reduce the compiled binary size. | ||||
* | Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵ | Dean Camera | 2010-09-30 | 3 | -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 Camera | 2010-09-28 | 1 | -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 Camera | 2010-09-28 | 6 | -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 Camera | 2010-09-24 | 2 | -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 Camera | 2010-09-15 | 2 | -4/+4 |
| | | | | assembly and C++ sources (thanks to Daniel Czigany). | ||||
* | Fixed incorrect signature reported in the CDC class bootloader for the ↵ | Dean Camera | 2010-09-14 | 3 | -15/+15 |
| | | | | ATMEGA32U2. |