aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
Commit message (Collapse)AuthorAgeFilesLines
* Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵Dean Camera2010-11-253-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 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-245-0/+1442
| | | | up to three simultaneous notes from MIDI channel 0.
* Fixed Benito project discarding incoming data from the USB virtual serial ↵Dean Camera2010-11-235-7/+6
| | | | | | port when the USART is busy. Minor documentation improvements.
* Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵Dean Camera2010-11-229-16/+16
| | | | value to give maximum throughput.
* 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).
* Rename incorrectly named XPROGTarget_SendBreak() function to ↵Dean Camera2010-11-173-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 Camera2010-11-167-61/+87
| | | | automatically after exiting TPI programming mode.
* Slow AVRISP-MKII clone PDI/TPI programming speed back to 250KHz due to ↵Dean Camera2010-11-163-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 Camera2010-11-165-12/+33
| | | | 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-145-8/+7
|
* Fixed PDI/TPI programming speed of ~250KHz in the AVRISP-MKII Clone project, ↵Dean Camera2010-11-123-4/+7
| | | | instead of the desired 500KHz.
* Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵Dean Camera2010-11-109-19/+19
| | | | endpoint descriptors (thanks to MCS Electronics).
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-085-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 Camera2010-11-071-1/+1
| | | | report descriptor.
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-0517-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 Camera2010-11-032-8/+20
| | | | send buffer becomes full.
* Fix XPLAINBridge code broken during the changes to the Rescue Clock ↵Dean Camera2010-11-023-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 Camera2010-11-026-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 Camera2010-10-28106-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 Camera2010-10-2511-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 Camera2010-10-2428-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 Camera2010-10-132-3/+3
| | | | recent API changes in the LUFA core.
* Fix SoftUART.c not compiling due to accidental check in of changes not yet ↵Dean Camera2010-10-131-3/+3
| | | | complete in the rest of the XPLAINBridge project code.
* Minor documentation corrections.Dean Camera2010-10-133-6/+6
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-13158-2245/+2396
| | | | tool made by Laszlo Monda
* Fix Webserver project code not compiling due to the changes to the USB mode ↵Dean Camera2010-10-124-4/+4
| | | | selection constant names.
* Fixed ISR definition conflict in the XPLAIN bridge between the software UART ↵Dean Camera2010-10-102-11/+16
| | | | and the AVRISP-MKII ISP modules.
* Revert change to the AVRISP-MKII project for fuse byte programming via the ↵Dean Camera2010-10-021-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 Camera2010-10-022-3/+10
| | | | XMEGA targets.
* Fixed broken FLASH/EEPROM programming in the AVRISP-MKII clone project when ↵Dean Camera2010-10-022-4/+15
| | | | writing in non-paged mode and the polling byte cannot be used.
* Fixed LowLevel JoystickHostWithParser demo not saving the chosen HID ↵Dean Camera2010-10-011-15/+12
| | | | | | interface's report descriptor size. Simplified low level Host demo configuration descriptor parser routines.
* Fix low level host mode demos not correctly fetching the next endpoint when ↵Dean Camera2010-09-303-34/+47
| | | | | | an invalid interface is discarded. Update the pipe configuration routines in the host mode class drivers so that they use the same new code to enumerate compatible devices to increase reliability. Add support to the host mode class drivers for non-sequential (but non-overlapping with other interface) pipe numbers.
* Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵Dean Camera2010-09-308-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.
* Changed default value for the reset polarity parameter in the AVRISP-MKII ↵Dean Camera2010-09-292-2/+4
| | | | | | project so that it defaults to active low drive. Fixed incorrect USB_DeviceState value when unconfiguring the device without an address set.
* Move out many of the common class driver constants into grouped enums, to ↵Dean Camera2010-09-2812-69/+73
| | | | | | | | make them more managable. Add new CDC descriptor structs to the CDC class driver, so that the CDC demos can use human readable field names. Rename prefix for Still Image Host class driver functions from "SImage_" to "SI_" to remain consistent with the rest of the driver.
* Remove dfu-programmer program switches, to ensure maximum compatibility with ↵Dean Camera2010-09-2411-22/+22
| | | | all dfu-programmer versions.
* Added the --suppress-bootloader-mem option to the makefile dfu target, to ↵Dean Camera2010-09-2411-33/+33
| | | | | | | | 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-1511-22/+22
| | | | assembly and C++ sources (thanks to Daniel Czigany).
* Added board hardware driver support for the BUI development board.Dean Camera2010-09-142-114/+1
|
* Remove incomplete MIDIToneGenerator project.Dean Camera2010-09-135-1391/+0
|
* Fix typos in the project overview text files.Dean Camera2010-09-093-3/+3
|
* Added class specific descriptor type defines with standard USB-IF element ↵Dean Camera2010-09-096-30/+30
| | | | naming.
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-319-26/+26
| | | | USB AVR device "series" comprises of.
* Fix incorrect ADC driver documentation for the parameters of ADC_Init(), fix ↵Dean Camera2010-08-312-2/+2
| | | | incorrect call to ADC_Init() in the TemperatureDatalogger project.
* Remove remaining void* descriptor casts in the projects and demos that were ↵Dean Camera2010-08-294-19/+19
| | | | not removed when the GetDescriptor callback function's signature was altered.
* Add better description of the Ultra-Lightweight Ring Buffer header files.Dean Camera2010-08-293-3/+24
|
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-2422-100/+111
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
* Moved calls to Device mode Class Driver events to after the request has been ↵Dean Camera2010-08-223-1/+3
| | | | | | acknowledged, so that long event handlers do do skew the timing of the control requests. Fixed USBtoSerial and Benito project SetLineEncoding calls failing if the USART is busy, due to the RX ISR delaying the control request handler.