Fixed Set/Clear Feature requests directed to a non-configured endpoint not returning...
[pub/USBasp.git] / LUFA / Drivers / USB / Class / Device / Audio.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2010.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 * \brief Device mode driver for the library USB Audio Class driver.
33 *
34 * Device mode driver for the library USB Audio Class driver.
35 *
36 * \note This file should not be included directly. It is automatically included as needed by the class driver
37 * dispatch header located in LUFA/Drivers/USB/Class/Audio.h.
38 */
39
40 /** \ingroup Group_USBClassAudio
41 * @defgroup Group_USBClassAudioDevice Audio Class Device Mode Driver
42 *
43 * \section Sec_Dependencies Module Source Dependencies
44 * The following files must be built with any user project that uses this module:
45 * - LUFA/Drivers/USB/Class/Device/Audio.c
46 *
47 * \section Module Description
48 * Device Mode USB Class driver framework interface, for the Audio USB Class driver.
49 *
50 * @{
51 */
52
53 #ifndef _AUDIO_CLASS_DEVICE_H_
54 #define _AUDIO_CLASS_DEVICE_H_
55
56 /* Includes: */
57 #include "../../USB.h"
58 #include "../Common/Audio.h"
59
60 #include <string.h>
61
62 /* Enable C linkage for C++ Compilers: */
63 #if defined(__cplusplus)
64 extern "C" {
65 #endif
66
67 /* Preprocessor Checks: */
68 #if !defined(__INCLUDE_FROM_AUDIO_DRIVER)
69 #error Do not include this file directly. Include LUFA/Drivers/Class/Audio.h instead.
70 #endif
71
72 /* Public Interface - May be used in end-application: */
73 /* Type Defines: */
74 /** \brief Audio Class Device Mode Configuration and State Structure.
75 *
76 * Class state structure. An instance of this structure should be made for each Audio interface
77 * within the user application, and passed to each of the Audio class driver functions as the
78 * AudioInterfaceInfo parameter. This stores each Audio interface's configuration and state information.
79 */
80 typedef struct
81 {
82 const struct
83 {
84 uint8_t StreamingInterfaceNumber; /**< Index of the Audio Streaming interface within the device this
85 * structure controls
86 */
87
88 uint8_t DataINEndpointNumber; /**< Endpoint number of the incoming Audio Streaming data, if available
89 * (zero if unused)
90 */
91 uint16_t DataINEndpointSize; /**< Size in bytes of the incoming Audio Streaming data endpoint, if available
92 * (zero if unused)
93 */
94
95 uint8_t DataOUTEndpointNumber; /**< Endpoint number of the outgoing Audio Streaming data, if available
96 * (zero if unused)
97 */
98 uint16_t DataOUTEndpointSize; /**< Size in bytes of the outgoing Audio Streaming data endpoint, if available
99 * (zero if unused)
100 */
101 } Config; /**< Config data for the USB class interface within the device. All elements in this section
102 * <b>must</b> be set or the interface will fail to enumerate and operate correctly.
103 */
104 struct
105 {
106 bool InterfaceEnabled; /**< Set and cleared by the class driver to indicate if the host has enabled the streaming endpoints
107 * of the Audio Streaming interface.
108 */
109 } State; /**< State data for the USB class interface within the device. All elements in this section
110 * are reset to their defaults when the interface is enumerated.
111 */
112 } USB_ClassInfo_Audio_Device_t;
113
114 /* Function Prototypes: */
115 /** Configures the endpoints of a given Audio interface, ready for use. This should be linked to the library
116 * \ref EVENT_USB_Device_ConfigurationChanged() event so that the endpoints are configured when the configuration containing the
117 * given Audio interface is selected.
118 *
119 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
120 *
121 * \return Boolean true if the endpoints were successfully configured, false otherwise
122 */
123 bool Audio_Device_ConfigureEndpoints(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
124
125 /** Processes incoming control requests from the host, that are directed to the given Audio class interface. This should be
126 * linked to the library \ref EVENT_USB_Device_UnhandledControlRequest() event.
127 *
128 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
129 */
130 void Audio_Device_ProcessControlRequest(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
131
132 /** Determines if the given audio interface is ready for a sample to be read from it, and selects the streaming
133 * OUT endpoint ready for reading.
134 *
135 * \note This function must only be called when the Device state machine is in the DEVICE_STATE_Configured state or
136 * the call will fail.
137 *
138 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
139 *
140 * \return Boolean true if the given Audio interface has a sample to be read, false otherwise
141 */
142 bool Audio_Device_IsSampleReceived(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo);
143
144 /** Determines if the given audio interface is ready to accept the next sample to be written to it, and selects
145 * the streaming IN endpoint ready for writing.
146 *
147 * \note This function must only be called when the Device state machine is in the DEVICE_STATE_Configured state or
148 * the call will fail.
149 *
150 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
151 *
152 * \return Boolean true if the given Audio interface is ready to accept the next sample, false otherwise
153 */
154 bool Audio_Device_IsReadyForNextSample(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo);
155
156 /* Inline Functions: */
157 /** General management task for a given Audio class interface, required for the correct operation of the interface. This should
158 * be called frequently in the main program loop, before the master USB management task \ref USB_USBTask().
159 *
160 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
161 */
162 static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo);
163 static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo)
164 {
165 (void)AudioInterfaceInfo;
166 }
167
168 /** Reads the next 8-bit audio sample from the current audio interface.
169 *
170 * \note This should be preceded immediately by a call to the USB_Audio_IsSampleReceived() function to ensure that
171 * the correct endpoint is selected and ready for data.
172 *
173 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
174 *
175 * \return Signed 8-bit audio sample from the audio interface
176 */
177 static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo) ATTR_ALWAYS_INLINE;
178 static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo)
179 {
180 int8_t Sample;
181
182 (void)AudioInterfaceInfo;
183
184 Sample = Endpoint_Read_Byte();
185
186 if (!(Endpoint_BytesInEndpoint()))
187 Endpoint_ClearOUT();
188
189 return Sample;
190 }
191
192 /** Reads the next 16-bit audio sample from the current audio interface.
193 *
194 * \note This should be preceded immediately by a call to the USB_Audio_IsSampleReceived() function to ensure that
195 * the correct endpoint is selected and ready for data.
196 *
197 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
198 *
199 * \return Signed 16-bit audio sample from the audio interface
200 */
201 static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo) ATTR_ALWAYS_INLINE;
202 static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo)
203 {
204 int16_t Sample;
205
206 (void)AudioInterfaceInfo;
207
208 Sample = (int16_t)Endpoint_Read_Word_LE();
209
210 if (!(Endpoint_BytesInEndpoint()))
211 Endpoint_ClearOUT();
212
213 return Sample;
214 }
215
216 /** Reads the next 24-bit audio sample from the current audio interface.
217 *
218 * \note This should be preceded immediately by a call to the USB_Audio_IsSampleReceived() function to ensure that
219 * the correct endpoint is selected and ready for data.
220 *
221 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
222 *
223 * \return Signed 24-bit audio sample from the audio interface
224 */
225 static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo) ATTR_ALWAYS_INLINE;
226 static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo)
227 {
228 int32_t Sample;
229
230 (void)AudioInterfaceInfo;
231
232 Sample = (((uint32_t)Endpoint_Read_Byte() << 16) | Endpoint_Read_Word_LE());
233
234 if (!(Endpoint_BytesInEndpoint()))
235 Endpoint_ClearOUT();
236
237 return Sample;
238 }
239
240 /** Writes the next 8-bit audio sample to the current audio interface.
241 *
242 * \note This should be preceded immediately by a call to the USB_Audio_IsReadyForNextSample() function to ensure that
243 * the correct endpoint is selected and ready for data.
244 *
245 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
246 * \param[in] Sample Signed 8-bit audio sample
247 */
248 static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
249 const int8_t Sample) ATTR_ALWAYS_INLINE;
250 static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
251 const int8_t Sample)
252 {
253 Endpoint_Write_Byte(Sample);
254
255 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo->Config.DataINEndpointSize)
256 Endpoint_ClearIN();
257 }
258
259 /** Writes the next 16-bit audio sample to the current audio interface.
260 *
261 * \note This should be preceded immediately by a call to the USB_Audio_IsReadyForNextSample() function to ensure that
262 * the correct endpoint is selected and ready for data.
263 *
264 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
265 * \param[in] Sample Signed 16-bit audio sample
266 */
267 static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
268 const int16_t Sample) ATTR_ALWAYS_INLINE;
269 static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
270 const int16_t Sample)
271 {
272 Endpoint_Write_Word_LE(Sample);
273
274 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo->Config.DataINEndpointSize)
275 Endpoint_ClearIN();
276 }
277
278 /** Writes the next 24-bit audio sample to the current audio interface.
279 *
280 * \note This should be preceded immediately by a call to the USB_Audio_IsReadyForNextSample() function to ensure that
281 * the correct endpoint is selected and ready for data.
282 *
283 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state
284 * \param[in] Sample Signed 24-bit audio sample
285 */
286 static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
287 const int32_t Sample) ATTR_ALWAYS_INLINE;
288 static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
289 const int32_t Sample)
290 {
291 Endpoint_Write_Byte(Sample >> 16);
292 Endpoint_Write_Word_LE(Sample);
293
294 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo->Config.DataINEndpointSize)
295 Endpoint_ClearIN();
296 }
297
298 /* Disable C linkage for C++ Compilers: */
299 #if defined(__cplusplus)
300 }
301 #endif
302
303 #endif
304
305 /** @} */