aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update file contributor copyrights for 2012.Dean Camera2012-02-04686-686/+686
|
* Update file header copyrights for 2012.Dean Camera2012-02-04687-739/+739
|
* Minor corrections to the XMEGA USB controller implementation.Dean Camera2012-02-044-6/+16
|
* Minor documentation corrections.Dean Camera2012-02-0413-22/+26
|
* Add API support signature to the CDC and DFU class bootloaders, so that the ↵Dean Camera2012-02-037-16/+39
| | | | application can detect the bootloader's API support.
* Fix errors in the new Micropendous board drivers. Reorder the board ↵Dean Camera2012-02-035-28/+38
| | | | definition macro indexes so that misspelled board names default to BOARD_USER rather then BOARD_USBKEY.
* Add support for the Micropendous series of USB AVR8 boards.Dean Camera2012-02-037-38/+365
|
* Minor documentation fixes.Dean Camera2012-02-032-4/+3
|
* Minor documentation improvements.Dean Camera2012-02-021-39/+46
|
* Minor documentation improvements.Dean Camera2012-02-0120-38/+38
|
* Fixed AVRISP-MKII Clone timing out on long programming commands such as ↵Dean Camera2012-01-303-0/+7
| | | | programming the EEPROM on an ATMEGA8 (thanks to Martin Kelling).
* Add missing reference to the BootloaderAPI.S source file in the DFU and CDC ↵Dean Camera2012-01-292-2/+2
| | | | class bootloader AVRStudio 4 project files.
* Fixed DFU class bootloader not resetting the LED pins as high impedance ↵Dean Camera2012-01-293-3/+5
| | | | inputs when a software jump to the user applications is requested.
* Added new LEDs_Disable(), Buttons_Disable() and Joystick_Disable() functions ↵Dean Camera2012-01-2965-16/+422
| | | | to the board hardware drivers.
* Added new CALLBACK_Audio_Device_GetSetInterfaceProperty() callback to the ↵Dean Camera2012-01-286-4/+139
| | | | Audio Device Class driver.
* Make all AVRISP-MKII programmer parameters readable, since there's no real ↵Dean Camera2012-01-233-8/+10
| | | | good reason to restrict parameter reads. Fix misspelt target reset polarity EEPROM variable.
* Minor bootloader tweaks; make some functions static where possible to reduce ↵Dean Camera2012-01-159-10/+24
| | | | the compiled binary size, add additional comments to the makefiles.
* USB_CONFIG_ATTR_BUSPOWERED constant renamed to USB_CONFIG_ATTR_RESERVED, as ↵Dean Camera2012-01-0250-60/+63
| | | | this was misnamed (thanks to NXP Semiconductors).
* Fixed incorrect implementation of LEDs_ToggleLEDs() for the Adafruit-U4 ↵Dean Camera2011-12-262-3/+4
| | | | board (thanks to Caroline Saliman).
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-23278-910/+1000
| | | | trailing whitespace at the end of each line.
* Fixed compiler warning on GCC with -wundef compile flag is used (thanks to ↵Dean Camera2011-12-202-2/+3
| | | | Georg Glock).
* Don't validate the Device Descriptor's vendor ID when validating that a ↵Dean Camera2011-12-143-10/+0
| | | | device is an Android Accessory device; the Product ID and (later) Accessory protocol support is enough to probe AOA class support without having to maintain a list of Android device manufacture VID values.
* Minor XMEGA USB driver fixes.Dean Camera2011-12-132-13/+2
|
* Change PIPE_PIPENUM_MASK from 0x07 to the more generic 0x0F to allow for ↵Dean Camera2011-12-114-4/+5
| | | | full pipe address support in USB host architectures other than the current AVR8 devices. Minor documentation improvements.
* Fix incorrect Capabilities value in the CDC class Bootloader descriptors.Dean Camera2011-12-011-1/+1
|
* Altered the Mass Storage Host class driver so that SCSI data STALLs from the ↵Dean Camera2011-12-013-209/+48
| | | | | | attached device can be recovered from automatically without having to reset the Mass Storage interface. Altered the Mass Storage Host LowLevel demo so that SCSI data STALLs from the attached device can be recovered from automatically without having to reset the Mass Storage interface.
* Fixed AVRISP-MKII Clone failing to start application firmware once a TPI ↵Dean Camera2011-11-292-3/+10
| | | | programming session is exited.
* Fix typo in the Joystick board driver documentation example code.Dean Camera2011-11-291-1/+1
|
* Bit-bang ISP in the AVRISP-MKII clone project needs to set MOSI pin to the ↵Dean Camera2011-11-291-1/+2
| | | | MSB of the data byte on startup, not the LSB.
* Add support for the Paranoid Studio USB2AX boards (hardware revisions 1-3).Dean Camera2011-11-2810-5/+289
|
* Add dummy board documentation nodes for the XPLAIN_REV1 and TEENSY2 meta ↵Dean Camera2011-11-284-0/+23
| | | | board targets.
* Remove unnecessary ErrorCode variable initializations from the LowLevel Host ↵Dean Camera2011-11-282-2/+2
| | | | mode demos.
* Add missing const qualifier to bootloader API function parameters.Dean Camera2011-11-284-24/+24
|
* Oops - fix incorrect value of AOA_CSCP_AOADataSubclass in the Android Open ↵Dean Camera2011-11-241-1/+1
| | | | Accessory class driver.
* Minor Doxygen documentation improvements.Dean Camera2011-11-246-10/+14
| | | | Add missing ATTR_NON_NULL_PTR_ARG and const decorations.
* Add new USB_Host_GetDescriptor() function. Alter the ↵Dean Camera2011-11-243-51/+63
| | | | USB_Host_GetDeviceDescriptor() and USB_Host_GetDeviceStringDescriptor() convenience functions so that they wrap the new function.
* Added new USB_Host_GetDeviceConfiguration() and ↵Dean Camera2011-11-245-11/+71
| | | | USB_Host_GetInterfaceAltSetting() functions.
* Convert the LowLevel AndroidAccessory demo to use the new class driver ↵Dean Camera2011-11-249-48/+21
| | | | | | constants to reduce code duplication. Add missing Doxygen documentation.
* Add new Android Open Accessory class driver to the library core and add a ↵Dean Camera2011-11-2441-84/+3731
| | | | new Android Open Accessory Host ClassDriver demo.
* Use the proper "-Wl,--undefined=BootloaderAPI_JumpTable" linker command line ↵Dean Camera2011-11-236-16/+2
| | | | parameter in the bootloaders to ensure that the API jump tables are not discarded, rather than the previous C volatile pointer hack (thanks to Opendous Inc.).
* Update library to indicate support for the Android Accessory Host demo.Dean Camera2011-11-237-4/+73
|
* Move out Android Accessory Host demo to the Host mode LowLevel directory now ↵Dean Camera2011-11-2310-0/+0
| | | | that it is functionally complete.
* Add const-correctness to the Android_SendString() function of the Android ↵Dean Camera2011-11-232-3/+3
| | | | Accessory Host demo.
* Oops: Typo on the new TEENSY2 board support.Dean Camera2011-11-231-1/+1
|
* Fix interface protocol match value for the Android Accessory Host demo ↵Dean Camera2011-11-231-1/+1
| | | | interface configuration parser code (thanks to Opendous Inc.).
* Added support for version 2 of the Teensy boards (thanks to Christoph Redecker).Dean Camera2011-11-237-11/+46
|
* Add XMEGA compile time tokens to the LUFAConfig.h code template.Dean Camera2011-11-235-23/+77
| | | | | | Add additional compile time errors to the XMEGA and AVR8 architectures if multiple USE_*_DESCRIPTORS compile time tokens are enabled. Add support for the NO_INTERNAL_SERIAL compile time token on the XMEGA targets.
* Fixed broken AVR32 endpoint/pipe communications when ORDERED_EP_CONFIG ↵Dean Camera2011-11-224-15/+21
| | | | | | compile time option is not enabled (thanks to Matthias). Fixed broken compilation for the AVR32 devices if the NO_SOF_EVENTS compile time option was not enabled (thanks to Matthias).
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-1854-72/+76
| | | | driver source filenames to prevent ambiguities.
* Fixed misspelled HID_KEYBOARD_MODIFIER_* macros in the HID class driver ↵Dean Camera2011-11-1610-15/+19
| | | | (thanks to Laszlo Monda).