aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵Dean Camera2010-11-254-11/+12
| | | | 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 Camera2010-11-252-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 Camera2010-11-247-2/+1444
| | | | up to three simultaneous notes from MIDI channel 0.
* Fixed Benito project discarding incoming data from the USB virtual serial ↵Dean Camera2010-11-238-8/+29
| | | | | | port when the USART is busy. Minor documentation improvements.
* Commit for 101122 release.Dean Camera2010-11-222-25/+23
|
* Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵Dean Camera2010-11-2223-48/+48
| | | | value to give maximum throughput.
* Added board hardware driver support for the Microsin AVR-USB162 development ↵Dean Camera2010-11-218-9/+244
| | | | board.
* Remove internal USB_Device_NibbleToASCII() function in favour of manually ↵Dean Camera2010-11-212-8/+4
| | | | inlined code to prevent compilation errors in -O0 optimisation level.
* Oops - reduce size of each ring buffer in the USBtoSerial and Benito ↵Dean Camera2010-11-212-2/+2
| | | | projects so that the RAM is not overflowed on the smaller USB AVR targets (thanks to Andrei from Microsin.ru).
* Better documentation for the ANSI terminal escape codes header.Dean Camera2010-11-172-140/+162
| | | | Organise the current version changelog better to group core and non-core changes together.
* Rename incorrectly named XPROGTarget_SendBreak() function to ↵Dean Camera2010-11-174-12/+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 Camera2010-11-168-61/+88
| | | | automatically after exiting TPI programming mode.
* Slow AVRISP-MKII clone PDI/TPI programming speed back to 250KHz due to ↵Dean Camera2010-11-164-9/+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 Camera2010-11-166-12/+34
| | | | clone programmer project (thanks to Tom Light).
* Fixed incorrect event name in the Benito project.Dean Camera2010-11-151-2/+5
|
* Second patch to fix incorrect PDI/TPI programming speed.Dean Camera2010-11-146-9/+8
|
* Fixed PDI/TPI programming speed of ~250KHz in the AVRISP-MKII Clone project, ↵Dean Camera2010-11-124-4/+8
| | | | instead of the desired 500KHz.
* Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵Dean Camera2010-11-1040-85/+87
| | | | endpoint descriptors (thanks to MCS Electronics).
* Remove link to (now deleted) public Mercurial mirror in the documentation.Dean Camera2010-11-091-1/+0
|
* Fix incorrect ADEFS and CPPDEFS entries in the DFU and CDC class bootloader ↵Dean Camera2010-11-092-4/+4
| | | | makefiles.
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-0814-13/+148
| | | | | | 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 Camera2010-11-072-1/+2
| | | | report descriptor.
* Fix documentation reference error.Dean Camera2010-11-051-2/+2
|
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-0588-224/+222
| | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
* Loop in the ClassDriver MIDI device/host demos until there are no more ↵Dean Camera2010-11-054-8/+12
| | | | incomming events to process. Only clear the endpoint/pipe bank in the LowLevel MIDI device/host demos when the endpoint is empty after an event read.
* Fixed USBtoSerial and XPLAINBridge demos discarding data from the PC if the ↵Dean Camera2010-11-036-10/+22
| | | | send buffer becomes full.
* Minor documentation improvements.Dean Camera2010-11-032-24/+24
|
* Remove already implemented features from the Future Changes manual page.Dean Camera2010-11-031-1/+0
|
* Fixed MIDI class driver send routines silently discarding packets if the ↵Dean Camera2010-11-033-18/+13
| | | | endpoint or pipe is busy (thanks to Robin Green).
* Fix XPLAINBridge code broken during the changes to the Rescue Clock ↵Dean Camera2010-11-0225-272/+365
| | | | | | 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 Camera2010-11-027-25/+56
| | | | clock can be generated at all times when 125KHz ISP programming mode is selected.
* Rename new CDC class bootloader NO_LOCK_BYTE_SUPPORT compile time option to ↵Dean Camera2010-10-294-192/+199
| | | | | | 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-296-30/+61
| | | | and NO_LOCK_BYTE_SUPPORT compile time options to the CDC class bootloader.
* Oops - typos in the naming of the NBUSYBK0 bits breaking the new busy bank ↵Dean Camera2010-10-292-3/+3
| | | | counting functions.
* Added new Pipe_GetBusyBanks(), Endpoint_GetBusyBanks() and ↵Dean Camera2010-10-293-0/+43
| | | | Endpoint_AbortPendingIN() functions.
* Added standard keyboard HID report scancode defines (thanks to László Monda).Dean Camera2010-10-2812-79/+337
|
* Move Set Feature and Clear Feature control request feature selector values ↵Dean Camera2010-10-282-19/+22
| | | | into their own enum.
* Move RNDISConstants.h into the RNDIS class driver common definition header.Dean Camera2010-10-2823-149/+272
| | | | Add logical grouping of related #define values for better Doxygen documentation.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-28578-596/+595
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Added new NO_CLASS_DRIVER_AUTOFLUSH compile time option to disable automatic ↵Dean Camera2010-10-2710-24/+53
| | | | | | flushing of interfaces when the USB management tasks for each driver is called. The MIDI class drivers now automatically flushes the MIDI interface when the MIDI class driver's USBTask() function is called.
* Changed AudioInput and AudioOutput demos to reload the next sample via an ↵Dean Camera2010-10-2610-112/+88
| | | | interrupt rather than polling the sample timer.
* Add descriptor class, subclass and protocol constants to the class drivers, ↵Dean Camera2010-10-2596-631/+650
| | | | | | | | 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 Camera2010-10-24208-2910/+589
| | | | | | 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.
* Better algorithm to extract and convert the internal device serial number ↵Dean Camera2010-10-242-6/+6
| | | | | | into a string descriptor (if present). Fix incorrect warning text when an unsuitable F_CLOCK value is given.
* Oops - fix broken SPI driver due to missing bit inversion on a port mask.Dean Camera2010-10-201-3/+3
|
* Added default test tone generation mode to the Device mode AudioInput demos.Dean Camera2010-10-2010-26/+78
|
* Added board hardware driver support for the Minimus board (thanks to the ↵Dean Camera2010-10-178-3/+240
| | | | PSGroove team).
* Oops - add missing Maximus board LED hardware driver file.Dean Camera2010-10-172-1/+132
|
* Added board hardware driver support for the Maximus board (thanks to the ↵Dean Camera2010-10-175-2/+9
| | | | PSGroove team).
* Added board hardware driver support for the Blackcat USB JTAG board (thanks ↵Dean Camera2010-10-178-3/+141
| | | | to the PSGroove team).