Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright year on all source files. | Dean Camera | 2011-01-01 | 105 | -204/+204 |
| | |||||
* | Rename RingBuffer header functions and typedefs from RingBuff_* to ↵ | Dean Camera | 2010-12-31 | 4 | -12/+12 |
| | | | | RingBuffer_* so that it matches the header name. | ||||
* | Documentation improvements - put driver example code into its own section, ↵ | Dean Camera | 2010-12-26 | 11 | -51/+51 |
| | | | | fix incorrect and missing section names. | ||||
* | Added basic driver example use code to the library documentation. | Dean Camera | 2010-12-26 | 1 | -2/+2 |
| | | | | Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams. | ||||
* | Make a new general RingBuffer.h misc library driver, instead of the ↵ | Dean Camera | 2010-12-26 | 19 | -646/+37 |
| | | | | | | | | per-application LightweightRingBuff.h ring buffers. Change over projects to use the new driver. Add ORDERED_EP_CONFIG to the device Projects (only) that use only a single class driver, or where the endpoint ordering is fixed, to save on compiled binary size. Added new GCC_FORCE_POINTER_ACCESS() macro to correct GCC's mishandling of struct pointers. | ||||
* | Combined page and word ISP programming mode code in the AVRISP-MKII clone ↵ | Dean Camera | 2010-12-25 | 2 | -110/+67 |
| | | | | project to reduce compiled size and increase maintainability of the code. | ||||
* | Fixed possible programming problem in the AVRISP-MKII clone project when ↵ | Dean Camera | 2010-12-25 | 1 | -13/+15 |
| | | | | programming specific patterns into a target memory space that is only byte (not page) addressable. | ||||
* | Add DEVICE_STATE_AS_GPIOR=0 compile time option to the library projects, to ↵ | Dean Camera | 2010-12-24 | 12 | -2/+12 |
| | | | | reduce compiled binary size. | ||||
* | Fix a few more incorrectly ordered endpoint initialisations in the device demos. | Dean Camera | 2010-12-17 | 1 | -1/+1 |
| | |||||
* | Add missing AVRStudio4 project file for the MIDIToneGenerator project. | Dean Camera | 2010-12-17 | 1 | -0/+1 |
| | |||||
* | Fixed incorrect definition of the HID_KEYBOARD_SC_D constant in the HID ↵ | Dean Camera | 2010-12-13 | 1 | -0/+3 |
| | | | | | | class driver (thanks to Opendous Inc.). Add extra comments to the ISPTarget.c source file in the AVRISP-MKII clone project. | ||||
* | Fixed possible lost data in the XPLAINBridge, USBtoSerial and Benito ↵ | Dean Camera | 2010-12-12 | 3 | -9/+39 |
| | | | | projects when the host exceeds the packet timeout period on received packets as set by USB_STREAM_TIMEOUT_MS (thanks to Justin Rajewski). | ||||
* | Added new RingBuffer_Peek() function to the lightweight ring buffer headers. | Dean Camera | 2010-12-12 | 3 | -0/+33 |
| | |||||
* | Added new completed MIDIToneGenerator project. | Dean Camera | 2010-12-03 | 7 | -8/+85 |
| | |||||
* | Fixed broken DFU bootloader, added XPLAIN support for bootloader start when ↵ | Dean Camera | 2010-11-27 | 1 | -0/+1 |
| | | | | XCK jumpered to ground. | ||||
* | Fix typos in the XPLAINBridge project preventing compilation. | Dean Camera | 2010-11-26 | 1 | -2/+2 |
| | |||||
* | Added ability to write protect Mass Storage disk write operations from the ↵ | Dean Camera | 2010-11-26 | 9 | -7/+124 |
| | | | | host OS. | ||||
* | Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵ | Dean Camera | 2010-11-25 | 3 | -9/+9 |
| | | | | of the alternative CTC mode via the Input Capture register, to reduce user confusion. | ||||
* | Make the incomplete MIDIToneGenerator project work with up to three notes, ↵ | Dean Camera | 2010-11-25 | 2 | -27/+61 |
| | | | | using a LRU (Least Recently Used) algorithm to discard the oldest set note when the note table becomes full. | ||||
* | Readd incomplete MIDIToneGenerator project, which can now correctly generate ↵ | Dean Camera | 2010-11-24 | 5 | -0/+1442 |
| | | | | up to three simultaneous notes from MIDI channel 0. | ||||
* | Fixed Benito project discarding incoming data from the USB virtual serial ↵ | Dean Camera | 2010-11-23 | 5 | -7/+6 |
| | | | | | | port when the USART is busy. Minor documentation improvements. | ||||
* | Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵ | Dean Camera | 2010-11-22 | 9 | -16/+16 |
| | | | | value to give maximum throughput. | ||||
* | Oops - reduce size of each ring buffer in the USBtoSerial and Benito ↵ | Dean Camera | 2010-11-21 | 2 | -2/+2 |
| | | | | projects so that the RAM is not overflowed on the smaller USB AVR targets (thanks to Andrei from Microsin.ru). | ||||
* | Rename incorrectly named XPROGTarget_SendBreak() function to ↵ | Dean Camera | 2010-11-17 | 3 | -11/+14 |
| | | | | XPROGTarget_SendIdle(), as it is sending idle bits and not break bits. | ||||
* | Fixed AVRISP-MKII clone project not starting the target's program ↵ | Dean Camera | 2010-11-16 | 7 | -61/+87 |
| | | | | automatically after exiting TPI programming mode. | ||||
* | Slow AVRISP-MKII clone PDI/TPI programming speed back to 250KHz due to ↵ | Dean Camera | 2010-11-16 | 3 | -8/+10 |
| | | | | | | issues with the XPLAINBridge when PDI programming at faster rates. Speed up XMEGANVM_WaitWhileNVMControllerBusy() by preloading the status register address into the pointer register of the target's NVM controller and then reading via a faster indirect load command. | ||||
* | Added new XCK_RESCUE_CLOCK_ENABLE compile time option to the AVRISP-MKII ↵ | Dean Camera | 2010-11-16 | 5 | -12/+33 |
| | | | | clone programmer project (thanks to Tom Light). | ||||
* | Fixed incorrect event name in the Benito project. | Dean Camera | 2010-11-15 | 1 | -2/+5 |
| | |||||
* | Second patch to fix incorrect PDI/TPI programming speed. | Dean Camera | 2010-11-14 | 5 | -8/+7 |
| | |||||
* | Fixed PDI/TPI programming speed of ~250KHz in the AVRISP-MKII Clone project, ↵ | Dean Camera | 2010-11-12 | 3 | -4/+7 |
| | | | | instead of the desired 500KHz. | ||||
* | Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵ | Dean Camera | 2010-11-10 | 9 | -19/+19 |
| | | | | endpoint descriptors (thanks to MCS Electronics). | ||||
* | Added board hardware driver support for the Adafruit U4 breakout board. | Dean Camera | 2010-11-08 | 5 | -8/+8 |
| | | | | | | Fixed calculation of timer register reload values derived from F_CPU; must subtract one from the division result for the compare value to be correct. Change AVRISP-MKII rescue clock speed to 4MHz to ensure that a 125KHz ISP speed works regardless of the target's fuses (i.e. DIV8 set). | ||||
* | Fixed broken input in the MagStripe reader project due to an incorrect HID ↵ | Dean Camera | 2010-11-07 | 1 | -1/+1 |
| | | | | report descriptor. | ||||
* | Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵ | Dean Camera | 2010-11-05 | 17 | -25/+25 |
| | | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards. | ||||
* | Fixed USBtoSerial and XPLAINBridge demos discarding data from the PC if the ↵ | Dean Camera | 2010-11-03 | 2 | -8/+20 |
| | | | | send buffer becomes full. | ||||
* | Fix XPLAINBridge code broken during the changes to the Rescue Clock ↵ | Dean Camera | 2010-11-02 | 3 | -12/+23 |
| | | | | | | generation in the AVRISP-MKII clone project. Change over all low level host mode project's descriptor comparator routines to perform the descriptor casting in a temp variable to make the code clearer and easier to modify (despite being more verbose). | ||||
* | Rescue clock of the AVRISP-MKII moved to the AVR's OCR1A pin, so that the ↵ | Dean Camera | 2010-11-02 | 6 | -25/+55 |
| | | | | clock can be generated at all times when 125KHz ISP programming mode is selected. | ||||
* | Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵ | Dean Camera | 2010-10-28 | 106 | -108/+108 |
| | | | | 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 | 11 | -75/+75 |
| | | | | | | | | 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. | ||||
* | All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵ | Dean Camera | 2010-10-24 | 28 | -38/+8 |
| | | | | | | is included, and no longer need to be seperately included. All LowLevel demos changed to use the constants and types defined in the USB class drivers. | ||||
* | Fix incomplete StandaloneProgrammer project code not compiling due to the ↵ | Dean Camera | 2010-10-13 | 2 | -3/+3 |
| | | | | recent API changes in the LUFA core. | ||||
* | Fix SoftUART.c not compiling due to accidental check in of changes not yet ↵ | Dean Camera | 2010-10-13 | 1 | -3/+3 |
| | | | | complete in the rest of the XPLAINBridge project code. | ||||
* | Minor documentation corrections. | Dean Camera | 2010-10-13 | 3 | -6/+6 |
| | |||||
* | Clean up excessive whitespace at the end of each line using the wspurify ↵ | Dean Camera | 2010-10-13 | 158 | -2245/+2396 |
| | | | | tool made by Laszlo Monda | ||||
* | Fix Webserver project code not compiling due to the changes to the USB mode ↵ | Dean Camera | 2010-10-12 | 4 | -4/+4 |
| | | | | selection constant names. | ||||
* | Fixed ISR definition conflict in the XPLAIN bridge between the software UART ↵ | Dean Camera | 2010-10-10 | 2 | -11/+16 |
| | | | | and the AVRISP-MKII ISP modules. | ||||
* | Revert change to the AVRISP-MKII project for fuse byte programming via the ↵ | Dean Camera | 2010-10-02 | 1 | -9/+0 |
| | | | | CMDEX bit - this appears to be an error in the XMEGA manual external memory programming table. | ||||
* | Fixed broken lock byte programming in the AVRISP-MKII clone project for some ↵ | Dean Camera | 2010-10-02 | 2 | -3/+10 |
| | | | | XMEGA targets. | ||||
* | Fixed broken FLASH/EEPROM programming in the AVRISP-MKII clone project when ↵ | Dean Camera | 2010-10-02 | 2 | -4/+15 |
| | | | | writing in non-paged mode and the polling byte cannot be used. | ||||
* | Fixed LowLevel JoystickHostWithParser demo not saving the chosen HID ↵ | Dean Camera | 2010-10-01 | 1 | -15/+12 |
| | | | | | | interface's report descriptor size. Simplified low level Host demo configuration descriptor parser routines. |