aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB
Commit message (Collapse)AuthorAgeFilesLines
* Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵Dean Camera2011-07-1916-80/+40
| | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors.
* Add support for the ORDERED_EP_CONFIG compile time token on the UC3 ↵Dean Camera2011-07-193-35/+90
| | | | architecture.
* Move out the EP_TYPE_* macros to the base USBController.h header, as these ↵Dean Camera2011-07-194-81/+28
| | | | are used in the device descriptors as well and thus must not be changed.
* More USB XMEGA porting for Endpoint control.Dean Camera2011-07-183-54/+94
|
* Add missing SVN eol-style property to files where it was missing.Dean Camera2011-07-1535-7472/+7472
|
* Add option to the USB XMEGAs to set the USB bus interrupt priority level.Dean Camera2011-07-152-5/+26
|
* Complete USB XMEGA interrupt control subsystem code in the core USB driver.Dean Camera2011-07-157-25/+158
| | | | | | Automatically load in the USB calibration bytes from the User Signature Row on start-up. Create internal SRAM variable for the endpoint control and status register table, used by the XMEGA USB controller hardware.
* Complete initial revision of the XMEGA Clock Management platform driver.Dean Camera2011-07-142-1/+6
| | | | Start the USB clock source generator inside USB_ResetInterface() for XMEGA devices.
* Update UC3 platform driver support to use the bitmasks defined in the header ↵Dean Camera2011-07-141-4/+21
| | | | | | files over raw constants. Start implementation of XMEGA platform drivers.
* More XMEGA USB AVR device port work - re-add missing Endpoint stream ↵Dean Camera2011-07-143-11/+69
| | | | functions, remove unnecessary internal functions.
* Implementation of several key core USB driver functions for the new USB ↵Dean Camera2011-07-144-122/+124
| | | | XMEGA devices.
* Correct the maximum banks per endpoint information macros for the UC3A3 and ↵Dean Camera2011-07-141-7/+7
| | | | UC3A4 devices.
* Add support for triple endpoint/pipe bank AVR32 UC3 devices.Dean Camera2011-07-143-2/+24
|
* Add missing ENDPOINT_DETAILS_EP7 macro for the UC3A3/UC3A4 devices.Dean Camera2011-07-141-1/+2
| | | | MultiArchDemos: Correct usage of updated INTC_RegisterGroupHandler() in the ported demos.
* Added Device Qualifier standard descriptor structure definitions ↵Dean Camera2011-07-141-0/+47
| | | | USB_StdDescriptor_DeviceQualifier_t and USB_Descriptor_DeviceQualifier_t.
* Add high speed USB support for the UC3 devices containing a high speed USB ↵Dean Camera2011-07-144-51/+83
| | | | | | controller. Add device support preprocessor checks and use symbolic bit names in the UC3 platform clock management driver.
* Add start of an architecture port to the Atmel USB XMEGA devices.Dean Camera2011-07-1323-2/+2954
|
* Remove unneeded #include of Device.h in StdDescriptors.h breaking ↵Dean Camera2011-07-131-4/+0
| | | | compilation for some user projects.
* Minor documentation fixes.Dean Camera2011-07-122-9/+9
|
* Fixed error in the pipe unordered allocation algorithm for the AVR8 devices ↵Dean Camera2011-07-122-12/+4
| | | | breaking compatibility with some devices.
* Add more missing function attributes to the TWI peripheral driver.Dean Camera2011-07-121-1/+1
| | | | Fix incorrect standard request name in the host standard request driver.
* Add missing function attributes.Dean Camera2011-07-1215-47/+79
|
* Added new USB_Host_GetDeviceStatus() function for USB Host mode.Dean Camera2011-07-122-10/+37
|
* More endianness porting of the LUFA host mode class drivers.Dean Camera2011-07-118-84/+84
|
* More endianness porting of the LUFA device mode class drivers.Dean Camera2011-07-1112-139/+266
| | | | | | Add endianness information to the class driver and core structure definitions. Move out the unused Ethernet_Frame_Info_t structure definition to the RNDIS device demos where it is needed.
* Minor documentation and style fixes.Dean Camera2011-07-113-8/+8
|
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-0827-449/+301
| | | | | | | | | | | | | | EVENT_USB_Host_DeviceEnumerationComplete() event callback for device configuration instead of manual host state machine manipulations in the main application task. Added new USB_Host_ConfigurationNumber global variable to indicate the selected configuration in an attached device. Renamed global state variables that are specific to a certain USB mode to clearly indicate which mode the variable relates to, by changing the USB_* prefix to USB_Device_* or USB_Host_*. Removed the HOST_STATE_WaitForDeviceRemoval and HOST_STATE_Suspended host state machine states, as these are no longer required. Altered the USB_Host_SetDeviceConfiguration() function to update the new USB_Host_ConfigurationNumber global as required. Moved out the Host mode standard request convenience/helper functions from the architecture specific Host driver files to the architecture agnostic HostStandardReq.c driver file.
* Tighten up the implementations of the USB_Device_SetDeviceAddress(), ↵Dean Camera2011-07-064-61/+61
| | | | | | USB_Controller_Reset() and USB_PLL_On() functions for the AVR8 devices. Minor corrections to the documentation of the USB_Control_Request_t enum.
* Fix HID_Host_SetIdlePeriod() function to send the correct request type to ↵Dean Camera2011-07-052-3/+3
| | | | the device, remove reference to unavailable (and not needed) local variable.
* Add missing function parameter to the new HID_Host_SetIdlePeriod() function.Dean Camera2011-07-041-1/+2
|
* Add missing function parameter to the new HID_Host_SetIdlePeriod() function.Dean Camera2011-07-042-2/+4
|
* Added new HID_Host_SetIdlePeriod() function to the HID Host Class driver.Dean Camera2011-07-042-0/+26
|
* Merge over core library changes from the MultiArchDemos branch.Dean Camera2011-06-293-3/+6
|
* Minor internal macro renaming for the UC3 devices.Dean Camera2011-06-206-14/+14
|
* Fixed compile error when FIXED_CONTROL_ENDPOINT_SIZE compile time option was ↵Dean Camera2011-06-2018-5/+165
| | | | | | disabled, and a USE_*_DESCRIPTORS compile time option was not enabled on the AVR8s. Add C++ compatibility to some header files currently missing extern "C" linkage.
* Make the HID Report Parser Get/Set Report Item routines fail if a NULL ↵Dean Camera2011-06-201-0/+6
| | | | | | pointer to a report item is given. Minor visual enhancement to the HIDReportViewer project.
* Code style fixes for the Device mode USB Audio Class driver to make it more ↵Dean Camera2011-06-191-2/+8
| | | | in line with the style of the other library Device Class drivers.
* Add missing SVN eol-style properties to source files to prevent mixed ↵Dean Camera2011-06-162-657/+657
| | | | end-of-line characters.
* Rename new Audio class driver functions, callbacks and events to ensure that ↵Dean Camera2011-06-164-25/+28
| | | | they contain the USB mode (Device or Host) in the function names.
* Add macro guards to the templated C files to prevent compile errors if they ↵Dean Camera2011-06-148-2/+272
| | | | are mistakenly compiled as regular source files in a LUFA project.
* Rename Audio Host Class driver internal descriptor matching routines to be ↵Dean Camera2011-06-142-10/+10
| | | | in line with the rest of the class driver function names.
* Ensure that only the requested Audio class pipes are mapped to endpoints ↵Dean Camera2011-06-132-5/+9
| | | | | | within the device for a specific Audio Host Class driver instance. Fix const-correctness of the Audio Host Class driver.
* Fix bugs in the Host mode Audio class driver.Dean Camera2011-06-122-8/+20
|
* Fix errors in the library Host mode Audio Class driver.Dean Camera2011-06-092-9/+10
|
* Fix compile errors when both Host and Device modes are enabled.Dean Camera2011-06-093-3/+3
|
* Add new Audio Class Driver Host demos.Dean Camera2011-06-092-10/+39
| | | | | | Fix errors in the new Audio Host mode Class Driver, which would have prevented data from being sent or received properly by the device. Add microphone/square wave generation compile time switch to the Low Level AudioOutput Host demo.
* Pipe_BoundEndpointNumber() has been renamed to ↵Dean Camera2011-06-088-37/+80
| | | | | | Pipe_GetBoundEndpointAddress(), and now returns the correct endpoint direction as part of the endpoint address. Add Audio_GetSetEndpointProperty() function to the Host mode Audio class driver.
* Remove warnings in the documentation for the library class drivers about ↵Dean Camera2011-06-0814-66/+8
| | | | sequential pipe/endpoint allocation, as by default this is no longer as issue (unless ORDERED_EP_CONFIG is specified).
* Added new Host mode Audio Class driver.Dean Camera2011-06-087-8/+602
| | | | Added new EVENT_Audio_StreamStartStopChange() event to the Audio Device Class driver to detect stream start/stop events.
* Fix compile errors when compiling for the AVR32 UC3 target.Dean Camera2011-06-082-0/+2
|