aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Host/Audio.c
Commit message (Collapse)AuthorAgeFilesLines
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-181-247/+0
| | | | driver source filenames to prevent ambiguities.
* Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵Dean Camera2011-07-191-1/+1
| | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors.
* More endianness porting of the LUFA host mode class drivers.Dean Camera2011-07-111-2/+2
|
* Add missing SVN eol-style properties to source files to prevent mixed ↵Dean Camera2011-06-161-247/+247
| | | | 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-7/+7
| | | | 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-3/+7
| | | | | | 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-3/+6
|
* Fix errors in the library Host mode Audio Class driver.Dean Camera2011-06-091-4/+4
|
* Add new Audio Class Driver Host demos.Dean Camera2011-06-091-1/+1
| | | | | | 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-1/+33
| | | | | | 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.
* Added new Host mode Audio Class driver.Dean Camera2011-06-081-0/+208
| | | | 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-39/+0
| | | | in next release.
* Commit for 090810rc1 release.Dean Camera2009-08-051-0/+3
|
* Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.Dean Camera2009-06-141-0/+36
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.