aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix missing bitshift in the AVR8 Pipe_GetBoundEndpointAddress() function.Dean Camera2013-05-141-1/+1
|
* Fix Pipe_GetBoundEndpointAddress() returning bad values in some circumstances.Dean Camera2013-05-101-1/+2
|
* Minor documentation improvements.Dean Camera2013-05-041-6/+6
|
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-141-57/+59
|
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-241-8/+4
| | | | 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.
* Prevent written but unused variable warnings on GCC 4.6 with dummy reads.Dean Camera2011-10-091-0/+6
|
* Renamed USB_Host_ClearPipeStall() to USB_Host_ClearEndpointStall() as the ↵Dean Camera2011-08-241-1/+1
| | | | | | | | | | 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 missing function attributes.Dean Camera2011-07-121-1/+1
|
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-1/+1
| | | | | | | | | | | | | | 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.
* Fix compile errors when both Host and Device modes are enabled.Dean Camera2011-06-091-1/+1
|
* Pipe_BoundEndpointNumber() has been renamed to ↵Dean Camera2011-06-081-5/+6
| | | | | | 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.
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-051-1/+1
| | | | to Russian translation services provided by Andrey from Microsin.ru.
* Spell check library source code files.Dean Camera2011-06-011-1/+1
|
* Add missing function attributes to the pipe/endpoint functions for all ↵Dean Camera2011-04-121-1/+2
| | | | | | architectures. Perform endianness correction in the HID report parser for big-endian platforms.
* Oops - fix incorrect variable name in the updated Pipe_Write_8() function.Dean Camera2011-04-041-1/+1
|
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-041-53/+53
| | | | | | Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
* General cleanup and more port work to the AVR32 UC3B.Dean Camera2011-02-271-2/+2
|
* Move out common architecture-independent core definitions into the ↵Dean Camera2011-02-271-20/+0
| | | | appropriate core dispatch header files.
* Removed Pipe_ClearErrorFlags(), pipe error flags are now automatically ↵Dean Camera2011-02-261-10/+2
| | | | | | cleared when Pipe_ClearError() is called. More UC3B architecture porting.
* Rename architecture specific driver files, to make them appear with uniquely ↵Dean Camera2011-02-201-0/+943
identifying filenames in the documentation.