Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing board Buttons driver for the USBTINY MKII board target. | Dean Camera | 2010-03-30 | 4 | -2/+101 |
| | |||||
* | Oops - make sure board driver dispatch headers test for the correct BOARD ↵ | Dean Camera | 2010-03-30 | 7 | -11/+114 |
| | | | | | | define values. Add button support for the BENITO board target. | ||||
* | Added support for the JM-DB-U2 board hardware. | Dean Camera | 2010-03-30 | 8 | -4/+235 |
| | |||||
* | Added board hardware driver support for the Benito programmer. | Dean Camera | 2010-03-30 | 6 | -7/+32 |
| | |||||
* | Added board hardware driver support for Tom's USBTINY MKII programmer. | Dean Camera | 2010-03-30 | 10 | -13/+146 |
| | |||||
* | Add briefs for the library core structures. | Dean Camera | 2010-03-29 | 73 | -87/+382 |
| | |||||
* | Add file-level brief documentation. | Dean Camera | 2010-03-29 | 111 | -453/+1039 |
| | | | | Remove accidentally duplicated model-specific peripheral driver files. | ||||
* | Add new LUFA logo by Ryo Yamauchi. | Dean Camera | 2010-03-25 | 5 | -7/+8 |
| | |||||
* | All Class Driver Host mode demos now correctly set the board LEDs to READY ↵ | Dean Camera | 2010-03-25 | 21 | -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 Camera | 2010-03-24 | 14 | -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 Camera | 2010-03-24 | 2 | -1/+2 |
| | | | | item data alignment. | ||||
* | Fixed compilation error in the AudioInput demos when ↵ | Dean Camera | 2010-03-24 | 6 | -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 Camera | 2010-03-23 | 1 | -36/+12 |
| | | | | due to cycle constraints. | ||||
* | Added incomplete MIDIToneGenerator project. | Dean Camera | 2010-03-23 | 9 | -4/+1433 |
| | |||||
* | Standardized the naming scheme given to configuration descriptor ↵ | Dean Camera | 2010-03-22 | 86 | -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 Camera | 2010-03-21 | 2 | -2/+7 |
| | | | | the mode selection pin has been sampled. | ||||
* | Fixed LowLevel MassStorage demo broken on the U2 AVRs due to double-banked ↵ | Dean Camera | 2010-03-19 | 3 | -7/+8 |
| | | | | endpoints. | ||||
* | Remove redundant check in the software PDI programming code of the AVRISP ↵ | Dean Camera | 2010-03-17 | 3 | -7/+2 |
| | | | | project. | ||||
* | Software PDI mode breaks unless the software USART has 100 cycles between bits. | Dean Camera | 2010-03-17 | 8 | -22/+20 |
| | |||||
* | Increased throughput of the USBtoSerial demo on systems that send multiple ↵ | Dean Camera | 2010-03-16 | 2 | -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 Camera | 2010-03-16 | 2 | -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 Camera | 2010-03-16 | 5 | -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 Camera | 2010-03-15 | 2 | -2/+10 |
| | |||||
* | Fixed ADC routines not correctly returning the last result when multiple ↵ | Dean Camera | 2010-03-13 | 2 | -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 Camera | 2010-03-10 | 8 | -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 Camera | 2010-03-09 | 3 | -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 Camera | 2010-03-09 | 9 | -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 Camera | 2010-03-01 | 2 | -2/+4 |
| | |||||
* | Fix TWI driver not aborting when faced with no response after attempting to ↵ | Dean Camera | 2010-02-25 | 2 | -2/+3 |
| | | | | address a device on the bus. | ||||
* | Added a timeout value to the TWI_StartTransmission() function, within which ↵ | Dean Camera | 2010-02-24 | 6 | -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 Camera | 2010-02-24 | 16 | -16/+16 |
| | | | | components. | ||||
* | Revert changes made for the partial port to the AVR32 architecture. | Dean Camera | 2010-02-24 | 79 | -1724/+736 |
| | |||||
* | More AVR32 achitecture ports. | Dean Camera | 2010-02-24 | 11 | -74/+112 |
| | |||||
* | More porting of the USB core to the AVR32. | Dean Camera | 2010-02-23 | 20 | -205/+409 |
| | |||||
* | Start porting the USB core to the AVR32 UC3B. | Dean Camera | 2010-02-23 | 19 | -122/+354 |
| | |||||
* | Update Temperature board driver to be AVR32 compatible when the ADC ↵ | Dean Camera | 2010-02-23 | 18 | -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 Camera | 2010-02-23 | 7 | -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 Camera | 2010-02-22 | 26 | -98/+83 |
| | | | | native word size types. | ||||
* | Update manual pages to reference unfinished AVR32 port, add port status to ↵ | Dean Camera | 2010-02-22 | 4 | -12/+34 |
| | | | | the Future Changes page. | ||||
* | Add start of an AVR32 SPI driver. | Dean Camera | 2010-02-22 | 3 | -22/+151 |
| | |||||
* | Rename AVRU4U6U9 peripheral driver directory to AVR8. | Dean Camera | 2010-02-22 | 8 | -4/+4 |
| | |||||
* | Make SPI and USART peripheral dispatch driver headers in preparation for a ↵ | Dean Camera | 2010-02-22 | 7 | -54/+211 |
| | | | | set of AVR32 peripheral drivers. | ||||
* | Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs. | Dean Camera | 2010-02-22 | 16 | -18/+509 |
| | |||||
* | Oops - need to revert changes made to ease testing of the software PDI ↵ | Dean Camera | 2010-02-21 | 3 | -22/+3 |
| | | | | programming mode. | ||||
* | Remove dual ISR for software PDI mode, use a single ISR instead to reduce ↵ | Dean Camera | 2010-02-21 | 3 | -43/+55 |
| | | | | code complexity. | ||||
* | More fixes to the AVRISP command timeout system so that it should no longer ↵ | Dean Camera | 2010-02-21 | 8 | -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 Camera | 2010-02-21 | 4 | -5/+10 |
| | | | | of the AVRISP project. | ||||
* | Oops - missed a few references to the old global TimeoutMSRemaining counter ↵ | Dean Camera | 2010-02-20 | 1 | -5/+18 |
| | | | | in ISPTarget.c of the AVRISP-MKII clone project. | ||||
* | AVRISP programmer project now has a more robust timeout system, allowing for ↵ | Dean Camera | 2010-02-19 | 8 | -66/+122 |
| | | | | a doubling of the software USART speed for PDI and TPI programming. | ||||
* | Commit for the 100219 release. | Dean Camera | 2010-02-19 | 4 | -13/+15 |
| |