aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class
Commit message (Collapse)AuthorAgeFilesLines
* Add svn:eol-style property on all source files where it was missing. Fix ↵Dean Camera2012-06-214-937/+937
| | | | line endings of all makefile, *.c and *.h files.
* Add missing <math.h> include for the UC3 devices, hide CDC class driver ↵Dean Camera2012-06-122-2/+6
| | | | stream functions for unsupported platforms.
* Spell check source code, fix mistakes.Dean Camera2012-06-095-7/+7
|
* Fixed swapped Little Endian/Big Endian endpoint and pipe write code for the ↵Dean Camera2012-05-261-2/+1
| | | | UC3 devices (thanks to Andrew Chu).
* Additional fixes to the MIDI host driver due to not unfreezing/re-freezing ↵Dean Camera2012-05-201-4/+16
| | | | pipes correctly (thanks to Michael Brown).
* Fixed broken MIDI host driver MIDI_Host_ReceiveEventPacket() function due to ↵Dean Camera2012-05-061-8/+17
| | | | not unfreezing the MIDI data IN pipe before use (thanks to Michael Brown).
* Fixed possible deadlock in the CDC device driver if the USB connection is ↵Dean Camera2012-05-051-2/+6
| | | | dropped while the CDC_REQ_SetLineEncoding control request is being processed by the stack (thanks to Jonathan Hudgins).
* Changed MIDI event structure MIDI_EventPacket_t to use a single field for ↵Dean Camera2012-04-251-2/+13
| | | | the combined virtual cable index and command ID, to prevent bitfield packing issues on some architectures (thanks to Darren Gibbs).
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-1430-821/+317
|
* Oops - typos in alterations to HID_DESCRIPTOR_JOYSTICK().Dean Camera2012-03-291-3/+3
|
* Removed variable axis support from the HID_DESCRIPTOR_JOYSTICK() macro due ↵Dean Camera2012-03-291-12/+11
| | | | to OS incompatibilities, replaced with fixed 3-axis joystick report structure.
* Re-enable cppcheck static analysis unused function checks after adding in ↵Dean Camera2012-03-253-0/+3
| | | | special-case suppressions to the event stub functions. Add missing function prototypes to the AudioInput and AudioOutput class driver device demos.
* Fixed incorrect call to the user callback ↵Dean Camera2012-03-151-1/+1
| | | | 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 Camera2012-03-142-1/+8
| | | | Control interface within the device, for SET/GET/CUR/MIN/MAX/RES property adjustments.
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-245-20/+20
| | | | appropriate and remove/update old documentation.
* Remove potentially unaligned uint32_t access in HIDParser.c, replace with ↵Dean Camera2012-02-205-16/+9
| | | | standard C bit shifts.
* All USB Class Driver configuration struct values are now non-const, to allow ↵Dean Camera2012-02-1916-16/+18
| | | | for run-time modifications if required before configuring an instance.
* Minor documentation improvements.Dean Camera2012-02-111-2/+2
|
* Clean up the Audio Device class driver control request Endpoint match logic.Dean Camera2012-02-111-10/+7
|
* Altered the HID class driver to only try to construct at maximum one packet ↵Dean Camera2012-02-092-0/+6
| | | | per USB frame, to reduce CPU usage.
* Update file contributor copyrights for 2012.Dean Camera2012-02-0451-51/+51
|
* Update file header copyrights for 2012.Dean Camera2012-02-0451-51/+51
|
* Minor documentation improvements.Dean Camera2012-02-014-7/+7
|
* Added new CALLBACK_Audio_Device_GetSetInterfaceProperty() callback to the ↵Dean Camera2012-01-282-3/+68
| | | | Audio Device Class driver.
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-2331-82/+89
| | | | trailing whitespace at the end of each line.
* Don't validate the Device Descriptor's vendor ID when validating that a ↵Dean Camera2011-12-142-6/+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.
* Altered the Mass Storage Host class driver so that SCSI data STALLs from the ↵Dean Camera2011-12-011-80/+22
| | | | | | 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.
* Add support for the Paranoid Studio USB2AX boards (hardware revisions 1-3).Dean Camera2011-11-281-1/+1
|
* Oops - fix incorrect value of AOA_CSCP_AOADataSubclass in the Android Open ↵Dean Camera2011-11-241-1/+1
| | | | Accessory class driver.
* Convert the LowLevel AndroidAccessory demo to use the new class driver ↵Dean Camera2011-11-242-2/+7
| | | | | | 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-2426-56/+1031
| | | | new Android Open Accessory Host ClassDriver demo.
* Add XMEGA compile time tokens to the LUFAConfig.h code template.Dean Camera2011-11-231-2/+1
| | | | | | 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.
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-1845-45/+45
| | | | driver source filenames to prevent ambiguities.
* Fixed misspelled HID_KEYBOARD_MODIFIER_* macros in the HID class driver ↵Dean Camera2011-11-161-8/+8
| | | | (thanks to Laszlo Monda).
* Fixed race conditions in the CDC, HID and Mass Storage class drivers when ↵Dean Camera2011-11-093-1/+12
| | | | processing some control requests.
* Fixed CDC class drivers not saving and sending all 16-bits of the control ↵Dean Camera2011-10-262-14/+14
| | | | line states (thanks to Matthew Swabey).
* Added endian-correction to the CDC driver's Line Encoding control request ↵Dean Camera2011-10-071-4/+12
| | | | handlers.
* Add missing "used" attribute to ATTR_INIT_SECTION to ensure functions ↵Dean Camera2011-09-223-0/+5
| | | | | | declared with that meta-attribute are not discarded by the linker. Add missing function and definition documentation.
* Fixed HID Parser's largest report size bit count not including the size of ↵Dean Camera2011-09-172-3/+2
| | | | | | the last parsed report item. Fixed HID host driver's largest HID report size count corrupt when the number of report bits exceeds 255.
* Fixed optimization error in the HID Parser item value ↵Dean Camera2011-09-072-12/+14
| | | | | | USB_SetHIDReportItemInfo() and USB_GetHIDReportItemInfo() routines if the report item was NULL (which should be allowable according to the API). Fixed HID Parser CALLBACK_HIDParser_FilterHIDReportItem() callback function not being passed a cacheable report item pointer.
* Oops - restore conditional calls to USB_USBTask() in the Mass Storage class ↵Dean Camera2011-09-051-0/+8
| | | | driver for the non-stream loops.
* Move documentation for the USB_HOST_TIMEOUT_MS into the HostStandardReq ↵Dean Camera2011-08-281-1/+2
| | | | module where it is used.
* Remove redundant prototype for Audio_Host_StartStopStreaming() and ↵Dean Camera2011-08-281-8/+6
| | | | Audio_Host_GetSetEndpointProperty(). Update host mode Audio class inline functions to prevent unused parameter warnings.
* Renamed USB_Host_ClearPipeStall() to USB_Host_ClearEndpointStall() as the ↵Dean Camera2011-08-242-7/+20
| | | | | | | | | | function works on an endpoint address within the attached device, and not a Pipe within the host. Updated MS_Host_ResetMSInterface() to now perform a full Mass Storage reset sequence to prevent data corruption in the event of a device lock up or timeout (thanks to David Lyons). Add parenthesis around the library Endianness macros that do nothing on a particular architecture to prevent operator precedence issues depending on usage. Minor documentation corrections.
* Add multiple axis support to the HID joystick report in the ↵Dean Camera2011-08-231-20/+22
| | | | HID_DESCRIPTOR_JOYSTICK() macro.
* Remove redundant calls to USB_USBTask() in the Mass Storage Device Class ↵Dean Camera2011-07-291-20/+0
| | | | | | driver when INTERRUPT_CONTROL_ENDPOINT is not used, as this is done inside the stream callbacks. Fix implementations of Endpoint_SetEndpointDirection() and Endpoint_GetEndpointDirection() for the AVR8 architecture.
* Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵Dean Camera2011-07-199-10/+10
| | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors.
* Minor documentation fixes.Dean Camera2011-07-122-9/+9
|
* Add missing function attributes.Dean Camera2011-07-129-41/+71
|
* More endianness porting of the LUFA host mode class drivers.Dean Camera2011-07-118-84/+84
|