aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Host/Audio.h
Commit message (Collapse)AuthorAgeFilesLines
* Add missing SVN eol-style properties to source files to prevent mixed ↵Dean Camera2011-06-161-410/+410
| | | | end-of-line characters.
* Rename new Audio class driver functions, callbacks and events to ensure that ↵Dean Camera2011-06-161-6/+6
| | | | they contain the USB mode (Device or Host) in the function names.
* Rename Audio Host Class driver internal descriptor matching routines to be ↵Dean Camera2011-06-141-3/+3
| | | | 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-131-2/+2
| | | | | | 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-121-5/+14
|
* Fix errors in the library Host mode Audio Class driver.Dean Camera2011-06-091-5/+6
|
* Add new Audio Class Driver Host demos.Dean Camera2011-06-091-9/+38
| | | | | | 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-081-5/+26
| | | | | | 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-081-5/+0
| | | | 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-081-0/+355
| | | | Added new EVENT_Audio_StreamStartStopChange() event to the Audio Device Class driver to detect stream start/stop events.
* Remove skeleton Audio and MIDI Host mode Class drivers -- will not implement ↵Dean Camera2009-08-301-66/+0
| | | | in next release.
* Added module file dependancy information to the USB class drivers.Dean Camera2009-07-141-0/+4
|
* Enhanced class drivers to use the same public/private section seperations as ↵Dean Camera2009-06-151-1/+2
| | | | other portions of the library.
* Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.Dean Camera2009-06-141-0/+61
Split out common defines/types from class drivers into a seperate common class driver directory. Make central USB Class driver dispatch headers, used for both device and host modes.