aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add new LUFA logo by Ryo Yamauchi.Dean Camera2010-03-255-7/+8
|
* All Class Driver Host mode demos now correctly set the board LEDs to READY ↵Dean Camera2010-03-2521-21/+34
| | | | | | once the enumeration process has completed. Fixed Still Image Host class driver not resetting the transaction ID when a new session is opened, fixed driver not sending a valid session ID to the device.
* Added new Relay Controller Board project (thanks to OBinou).Dean Camera2010-03-2414-10/+3002
| | | | Added hardware board driver support for the PJRC Teensy line of USB AVR boards.
* Fixed incorrect definition of HID_ALIGN_DATA() causing incorrect HID report ↵Dean Camera2010-03-242-1/+2
| | | | item data alignment.
* Fixed compilation error in the AudioInput demos when ↵Dean Camera2010-03-246-7/+8
| | | | | | | | MICROPHONE_BIASED_TO_HALF_RAIL is defined (thanks to C. Scott Ananian). Minor documentation cleanups. Make sure HID class driver uses properly cast pointers when writing to the report buffer.
* Change over MIDIToneGenerator to use only a single channel (MIDI channel 1) ↵Dean Camera2010-03-231-36/+12
| | | | due to cycle constraints.
* Added incomplete MIDIToneGenerator project.Dean Camera2010-03-239-4/+1433
|
* Standardized the naming scheme given to configuration descriptor ↵Dean Camera2010-03-2286-408/+416
| | | | | | sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro.
* Double bank CDC endpoints in the XPLAIN Bridge project, re-enable JTAG once ↵Dean Camera2010-03-212-2/+7
| | | | the mode selection pin has been sampled.
* Fixed LowLevel MassStorage demo broken on the U2 AVRs due to double-banked ↵Dean Camera2010-03-193-7/+8
| | | | endpoints.
* Remove redundant check in the software PDI programming code of the AVRISP ↵Dean Camera2010-03-173-7/+2
| | | | project.
* Software PDI mode breaks unless the software USART has 100 cycles between bits.Dean Camera2010-03-178-22/+20
|
* Increased throughput of the USBtoSerial demo on systems that send multiple ↵Dean Camera2010-03-162-2/+3
| | | | bytes per packet (thanks to Opendous Inc.).
* Don't enable the pullup on the target /RESET line in the AVRISP project for ↵Dean Camera2010-03-162-5/+4
| | | | PDI mode - clearing the XMEGA's reset control register twice is enough to release it from reset. Possible silicon bug, since the official Atmel programmers have the same issue.
* Fixed PDI programming mode in the AVRISP programmer project not exiting ↵Dean Camera2010-03-165-22/+23
| | | | | | programming mode correctly (clear target Reset key twice, set /RESET pin to pullup). Add newlines to the MIDI event printf() statements in the MIDI host demos.
* Improve documentation for the ADC and TWI drivers.Dean Camera2010-03-152-2/+10
|
* Fixed ADC routines not correctly returning the last result when multiple ↵Dean Camera2010-03-132-22/+33
| | | | | | channels were read. Fixed ADC routines failing to read the extended channels (Channels 8 to 13, Internal Temperature Sensor) on the U4 series USB AVR parts.
* Added ENABLE_TELNET_SERVER compile time option to the Webserver project to ↵Dean Camera2010-03-108-22/+43
| | | | | | disable the TELNET server if desired. Change over static strings in the Webserver project to use PROGMEM where possible.
* Fix incorrect LED mask name in the Webserver project.Dean Camera2010-03-093-4/+6
| | | | Fix missing text from the Host Mode States enum documentation.
* Webserver project now uses the board LEDs to indicate the current IP ↵Dean Camera2010-03-099-18/+28
| | | | | | configuration state. Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
* Minor documentation updates.Dean Camera2010-03-012-2/+4
|
* Fix TWI driver not aborting when faced with no response after attempting to ↵Dean Camera2010-02-252-2/+3
| | | | address a device on the bus.
* Added a timeout value to the TWI_StartTransmission() function, within which ↵Dean Camera2010-02-246-30/+56
| | | | | | the addressed device must respond. Fixed TWI_StartTransmission() corrupting the contents of the GPIOR0 register.
* Fix incorrect error when directly including the LUFA internal USB library ↵Dean Camera2010-02-2416-16/+16
| | | | components.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-2479-1724/+736
|
* More AVR32 achitecture ports.Dean Camera2010-02-2411-74/+112
|
* More porting of the USB core to the AVR32.Dean Camera2010-02-2320-205/+409
|
* Start porting the USB core to the AVR32 UC3B.Dean Camera2010-02-2319-122/+354
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-2318-92/+138
| | | | | | peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Add SPI driver aliases for the old function names in the AVR8 driver, so that existing code will still compile against the new version.
* Fixed software PDI/TPI programming mode in the AVRISP project not correctly ↵Dean Camera2010-02-237-11/+29
| | | | | | toggling just the clock pin. Fix broken AVR8 Serial peripheral driver.
* Change over board hardware drivers to use the custom uintN_t and intN_t ↵Dean Camera2010-02-2226-98/+83
| | | | native word size types.
* Update manual pages to reference unfinished AVR32 port, add port status to ↵Dean Camera2010-02-224-12/+34
| | | | the Future Changes page.
* Add start of an AVR32 SPI driver.Dean Camera2010-02-223-22/+151
|
* Rename AVRU4U6U9 peripheral driver directory to AVR8.Dean Camera2010-02-228-4/+4
|
* Make SPI and USART peripheral dispatch driver headers in preparation for a ↵Dean Camera2010-02-227-54/+211
| | | | set of AVR32 peripheral drivers.
* Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.Dean Camera2010-02-2216-18/+509
|
* Oops - need to revert changes made to ease testing of the software PDI ↵Dean Camera2010-02-213-22/+3
| | | | programming mode.
* Remove dual ISR for software PDI mode, use a single ISR instead to reduce ↵Dean Camera2010-02-213-43/+55
| | | | code complexity.
* More fixes to the AVRISP command timeout system so that it should no longer ↵Dean Camera2010-02-218-31/+58
| | | | lock up while processing command no matter what the conditions.
* Increased the speed of both software and hardware TPI/PDI programming modes ↵Dean Camera2010-02-214-5/+10
| | | | of the AVRISP project.
* Oops - missed a few references to the old global TimeoutMSRemaining counter ↵Dean Camera2010-02-201-5/+18
| | | | in ISPTarget.c of the AVRISP-MKII clone project.
* AVRISP programmer project now has a more robust timeout system, allowing for ↵Dean Camera2010-02-198-66/+122
| | | | a doubling of the software USART speed for PDI and TPI programming.
* Commit for the 100219 release.Dean Camera2010-02-194-13/+15
|
* Use a temporary variable to hold the current URI length in the Webserver, ↵Dean Camera2010-02-183-13/+12
| | | | rather than calling strlen() multiple times on an unchanged buffer. Clean up uip-split.c.
* Turn OFF double banking in the Webserver demo - leaving it on seems to ↵Dean Camera2010-02-183-6/+5
| | | | destroy the system throughput.
* Add uIP-split code to the Webserver project, so that each packet is split in ↵Dean Camera2010-02-189-70/+315
| | | | half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory.
* Clean up XPLAINBridge code.Dean Camera2010-02-166-21/+44
|
* Make sure the button report set masks use OR in all circumstances, to ↵Dean Camera2010-02-164-4/+4
| | | | prevent user confusion. While the first set of the buttons report item can be a direct assignment, it is not immediately clear to new developers why this is the case.
* Oops - missing brackets in the declaration of a string in TELNETServerApp.c.Dean Camera2010-02-151-1/+1
|
* Add missing TWI_Init() call to the TemperatureDataLogger project. Make ↵Dean Camera2010-02-156-15/+9
| | | | DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box.