Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added new RESET_TOGGLES_LIBUSB_COMPAT compile time option to the AVRISP-MKII ↵ | Dean Camera | 2012-05-20 | 1 | -0/+1 |
| | | | | clone programmer project (thanks to Robert Spitzenpfeil). | ||||
* | Added build test to verify correct compilation of all bootloaders using all ↵ | Dean Camera | 2012-05-13 | 1 | -0/+3 |
| | | | | | | supported devices. Fixed compile error with the unreleased ATMEGA32U6 device. | ||||
* | Fixed CDC and DFU bootloaders API function offsets incorrect on some devices ↵ | Dean Camera | 2012-05-13 | 1 | -0/+1 |
| | | | | (thanks to Rod DeMay). | ||||
* | Changed board LED driver implementations of LEDs_ToggleLEDs() for the AVR8 ↵ | Dean Camera | 2012-05-06 | 1 | -0/+1 |
| | | | | architecture to use the fast PIN register toggle alternative function for speed. | ||||
* | Added support for the Olimex AVR-USB-32U4 and Olimex AVR-USB-T32U4 boards. | Dean Camera | 2012-05-06 | 1 | -0/+2 |
| | |||||
* | Fixed broken MIDI host driver MIDI_Host_ReceiveEventPacket() function due to ↵ | Dean Camera | 2012-05-06 | 1 | -0/+1 |
| | | | | not unfreezing the MIDI data IN pipe before use (thanks to Michael Brown). | ||||
* | Increased endpoint polling interval for all demos and projects to 5ms, as ↵ | Dean Camera | 2012-05-06 | 1 | -0/+1 |
| | | | | 1ms was causing some enumeration issues on some machines (thanks to Riku Salminen). | ||||
* | Fixed possible deadlock in the CDC device driver if the USB connection is ↵ | Dean Camera | 2012-05-05 | 1 | -0/+2 |
| | | | | dropped while the CDC_REQ_SetLineEncoding control request is being processed by the stack (thanks to Jonathan Hudgins). | ||||
* | Fixed incorrect DFU version number reported to the host in the DFU ↵ | Dean Camera | 2012-05-05 | 1 | -0/+2 |
| | | | | bootloader descriptors. Fixed incorrect version hundredths value encoding in VERSION_BCD() macro (thanks to Georg Glock). | ||||
* | The library bootloaders will now correctly start the user application after ↵ | Dean Camera | 2012-04-29 | 1 | -1/+3 |
| | | | | a watchdog-based application start, even if the /HWB line is held low externally during the reset phase. | ||||
* | Added support for the DorkbotPDX Duce board. | Dean Camera | 2012-04-25 | 1 | -0/+1 |
| | |||||
* | Fixed inverted LED logic in the USB2AX board LED driver (thanks to Nicolas ↵ | Dean Camera | 2012-04-25 | 1 | -0/+1 |
| | | | | Saugnier). | ||||
* | Changed MIDI event structure MIDI_EventPacket_t to use a single field for ↵ | Dean Camera | 2012-04-25 | 1 | -0/+2 |
| | | | | the combined virtual cable index and command ID, to prevent bitfield packing issues on some architectures (thanks to Darren Gibbs). | ||||
* | Fixed AVRISP-MKII programmer project reset line polarity inverted when the ↵ | Dean Camera | 2012-04-16 | 1 | -0/+1 |
| | | | | generated EEP file is loaded into the USB AVR's EEPROM and avr-dude is used. | ||||
* | Fixed incorrect reponse to GET STATUS requests in device mode if ↵ | Dean Camera | 2012-04-15 | 1 | -0/+1 |
| | | | | NO_DEVICE_SELF_POWER or NO_DEVICE_REMOTE_WAKEUP tokens are defined (thanks to Georg Glock). | ||||
* | Added new SerialToLCD user project contributed by Simon Foster. | Dean Camera | 2012-04-14 | 1 | -0/+1 |
| | |||||
* | Reintegrate the FullEPAddresses development branch into trunk. | Dean Camera | 2012-04-14 | 1 | -0/+12 |
| | |||||
* | Fixed CDC and DFU bootloaders failing to compile when the bootloader section ↵ | Dean Camera | 2012-04-14 | 1 | -0/+1 |
| | | | | size is 8KB or more (thanks to Georg Glock). | ||||
* | Removed the old pseudo-scheduler from the library as it was unused and ↵ | Dean Camera | 2012-04-08 | 1 | -0/+1 |
| | | | | deprecated since the 090810 release. | ||||
* | Minor documentation improvements. | Dean Camera | 2012-04-08 | 1 | -11/+11 |
| | |||||
* | Reverted AVRISP-MKII clone project watchdog based command timeout patch in ↵ | Dean Camera | 2012-04-01 | 1 | -0/+1 |
| | | | | favour of a hardware timer, to allow for use in devices with WDTRST fuse programmed. | ||||
* | Removed variable axis support from the HID_DESCRIPTOR_JOYSTICK() macro due ↵ | Dean Camera | 2012-03-29 | 1 | -1/+2 |
| | | | | to OS incompatibilities, replaced with fixed 3-axis joystick report structure. | ||||
* | Added additional bootloader API data to expose the bootloader start address ↵ | Dean Camera | 2012-03-29 | 1 | -0/+1 |
| | | | | and class to the DFU and CDC class bootloaders. | ||||
* | Fixed AVRISP-MKII programmer project failing to compile for the U4 chips ↵ | Dean Camera | 2012-03-20 | 1 | -0/+2 |
| | | | | when VTARGET_ADC_CHANNEL is defined to an invalid channel and NO_VTARGET_DETECT is defined (thanks to Steven Morehouse). | ||||
* | Fixed inverted LED logic in the OLIMEX162 board LED driver. | Dean Camera | 2012-03-20 | 1 | -0/+1 |
| | |||||
* | Fixed error in the AVRISP-MKII programmer when ISP mode is used at 64KHz ↵ | Dean Camera | 2012-03-18 | 1 | -1/+1 |
| | | | | (thanks to Ben R. Porter). | ||||
* | Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set ↵ | Dean Camera | 2012-03-17 | 1 | -0/+1 |
| | | | | (thanks to Sam Lin). | ||||
* | Fixed incorrect call to the user callback ↵ | Dean Camera | 2012-03-15 | 1 | -1/+2 |
| | | | | CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep). | ||||
* | Audio Device Class driver changed to also require the index of the Audio ↵ | Dean Camera | 2012-03-14 | 1 | -0/+1 |
| | | | | Control interface within the device, for SET/GET/CUR/MIN/MAX/RES property adjustments. | ||||
* | Added Dataflash operational checks and aborts to all projects using the ↵ | Dean Camera | 2012-03-09 | 1 | -0/+1 |
| | | | | Dataflash to ensure it is working correctly before use. | ||||
* | Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT ↵ | Dean Camera | 2012-03-06 | 1 | -0/+1 |
| | | | | is specified (thanks to Andrus Aaslaid). | ||||
* | Raised the guard bits in the AVRISP-MKII clone project when in PDI and TPI ↵ | Dean Camera | 2012-03-05 | 1 | -1/+1 |
| | | | | to 32, to prevent communication errors on low quality connections to a target. | ||||
* | Minor documentation improvements. | Dean Camera | 2012-02-26 | 1 | -1/+2 |
| | |||||
* | Modified the CDC Host demos to set a default CDC Line Encoding on enumerated ↵ | Dean Camera | 2012-02-24 | 1 | -1/+1 |
| | | | | devices. | ||||
* | Added support for the BitWizard Multio and Big-Multio boards. | Dean Camera | 2012-02-22 | 1 | -1/+1 |
| | |||||
* | Remove potentially unaligned uint32_t access in HIDParser.c, replace with ↵ | Dean Camera | 2012-02-20 | 1 | -1/+17 |
| | | | | standard C bit shifts. | ||||
* | Update trunk post-120219 release. | Dean Camera | 2012-02-19 | 1 | -0/+3 |
| | |||||
* | Commit for the 120219 release. | Dean Camera | 2012-02-19 | 1 | -1/+1 |
| | |||||
* | Fix errors uncovered by the new build test compile warnings; fix UC3 pipe ↵ | Dean Camera | 2012-02-19 | 1 | -0/+1 |
| | | | | configuration function broken, redundant function prototypes and unused parameters. | ||||
* | All USB Class Driver configuration struct values are now non-const, to allow ↵ | Dean Camera | 2012-02-19 | 1 | -0/+1 |
| | | | | for run-time modifications if required before configuring an instance. | ||||
* | Add build test for forced single USB modes. | Dean Camera | 2012-02-19 | 1 | -1/+2 |
| | | | | Fix UC3 Interrupt Management platform driver not compiling under C++. | ||||
* | Add build tests to verify correct compilation of as many modules as possible ↵ | Dean Camera | 2012-02-18 | 1 | -0/+4 |
| | | | | | | | | | | under as many architectures as possible. Fix broken compilation of LUFA under C++ compilers when the Serial peripheral module header file is included in a C++ source file. Fix missing semicolon in the UC3 architecture host pipe functions. Fix failed compilation for the XMEGA architecture if USB_DEVICE_ONLY us not specified. | ||||
* | Add new Master SPI Mode USART serial peripheral driver for the XMEGA and ↵ | Dean Camera | 2012-02-12 | 1 | -1/+2 |
| | | | | | | | | AVR8 architectures. Modify board Dataflash drivers so that each individual board is responsible for including the correct peripheral driver (SPI or SerialSPI) based on the board connections to the Dataflash chip. Complete A3BU-XPLAINED and B1-XPLAINED board Dataflash drivers. | ||||
* | Added Serial USART peripheral driver for the XMEGA platform. | Dean Camera | 2012-02-12 | 1 | -0/+1 |
| | | | | | | Fix XMEGA SPI peripheral driver's incorrect const-ness on the SPI peripheral struct. | ||||
* | Altered the HID class driver to only try to construct at maximum one packet ↵ | Dean Camera | 2012-02-09 | 1 | -0/+1 |
| | | | | per USB frame, to reduce CPU usage. | ||||
* | Allow serial strings to be generated on the older AVR8 devices which do not ↵ | Dean Camera | 2012-02-08 | 1 | -0/+2 |
| | | | | explicitly state they contain unique values in the datasheet, as this appears to be implemented in hardware. | ||||
* | Updated the AVRISP-MKII Clone programmer project to be compatible with the ↵ | Dean Camera | 2012-02-08 | 1 | -0/+3 |
| | | | | | | latest version of AVR Studio (version 5.1). Changed the AVRISP-MKII Clone programmer project to report a fixed 3.3V VTARGET voltage on USB AVRs lacking an ADC instead of 5V to prevent warnings in AVR Studio 5.1 when programming XMEGA devices. | ||||
* | Add board driver support for the Atmel XMEGA-B1 Xplained board. | Dean Camera | 2012-02-06 | 1 | -0/+1 |
| | | | | | | Fix Dataflash driver for the A3BU-Xplained board. Minor documentation improvements. | ||||
* | Add support for the Micropendous (Arduino-like) series of boards (revisions ↵ | Dean Camera | 2012-02-05 | 1 | -1/+1 |
| | | | | 1 and 2). | ||||
* | Added INVERTED_VBUS_ENABLE_LINE and NO_AUTO_VBUS_MANAGEMENT compile time ↵ | Dean Camera | 2012-02-05 | 1 | -0/+1 |
| | | | | options (thanks to Opendous Inc.). |