aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/USBTask.h
Commit message (Collapse)AuthorAgeFilesLines
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-241-5/+5
| | | | appropriate and remove/update old documentation.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-2/+2
| | | | trailing whitespace at the end of each line.
* More endianness porting of the LUFA device mode class drivers.Dean Camera2011-07-111-0/+2
| | | | | | 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.
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-3/+2
| | | | | | | | | | | | | | 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.
* Add missing function attributes to the pipe/endpoint functions for all ↵Dean Camera2011-04-121-1/+1
| | | | | | architectures. Perform endianness correction in the HID report parser for big-endian platforms.
* Oops - ensure that only the relevant/available interrupts are defined and ↵Dean Camera2011-02-271-1/+1
| | | | | | used on each architecture. Make all USB driver headers include USBMode.h first, to ensure that the relevant USB mode macros are defined.
* More updates to remove architecture-specific comments from the ↵Dean Camera2011-02-201-4/+4
| | | | documentation, alter USBMode.h preprocessor logic to support future architectures more easily.
* Initial restructuring of the core USB driver module to support multiple ↵Dean Camera2011-02-191-0/+203
architectures in the future.