3 Copyright (C) Dean Camera, 2011.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
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.
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
32 * \brief Device mode driver for the library USB Audio 1.0 Class driver.
34 * Device mode driver for the library USB Audio 1.0 Class driver.
36 * \note This file should not be included directly. It is automatically included as needed by the USB module driver
37 * dispatch header located in LUFA/Drivers/USB.h.
40 /** \ingroup Group_USBClassAudio
41 * \defgroup Group_USBClassAudioDevice Audio Class Device Mode Driver
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 <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
47 * \section Sec_ModDescription Module Description
48 * Device Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver.
53 #ifndef _AUDIO_CLASS_DEVICE_H_
54 #define _AUDIO_CLASS_DEVICE_H_
57 #include "../../USB.h"
58 #include "../Common/Audio.h"
62 /* Enable C linkage for C++ Compilers: */
63 #if defined(__cplusplus)
67 /* Preprocessor Checks: */
68 #if !defined(__INCLUDE_FROM_AUDIO_DRIVER)
69 #error Do not include this file directly. Include LUFA/Drivers/USB.h instead.
72 /* Public Interface - May be used in end-application: */
74 /** \brief Audio Class Device Mode Configuration and State Structure.
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 * \c AudioInterfaceInfo parameter. This stores each Audio interface's configuration and state information.
84 uint8_t StreamingInterfaceNumber
; /**< Index of the Audio Streaming interface within the device this
88 uint8_t DataINEndpointNumber
; /**< Endpoint number of the incoming Audio Streaming data, if available
91 uint16_t DataINEndpointSize
; /**< Size in bytes of the incoming Audio Streaming data endpoint, if available
95 uint8_t DataOUTEndpointNumber
; /**< Endpoint number of the outgoing Audio Streaming data, if available
98 uint16_t DataOUTEndpointSize
; /**< Size in bytes of the outgoing Audio Streaming data endpoint, if available
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.
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.
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.
112 } USB_ClassInfo_Audio_Device_t
;
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.
119 * \note The endpoint index numbers as given in the interface's configuration structure must not overlap with any other
120 * interface, or endpoint bank corruption will occur. Gaps in the allocated endpoint numbers or non-sequential indexes
121 * within a single interface is allowed, but no two interfaces of any type have have interleaved endpoint indexes.
123 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
125 * \return Boolean \c true if the endpoints were successfully configured, \c false otherwise.
127 bool Audio_Device_ConfigureEndpoints(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) ATTR_NON_NULL_PTR_ARG(1);
129 /** Processes incoming control requests from the host, that are directed to the given Audio class interface. This should be
130 * linked to the library \ref EVENT_USB_Device_ControlRequest() event.
132 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
134 void Audio_Device_ProcessControlRequest(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) ATTR_NON_NULL_PTR_ARG(1);
136 /* Inline Functions: */
137 /** General management task for a given Audio class interface, required for the correct operation of the interface. This should
138 * be called frequently in the main program loop, before the master USB management task \ref USB_USBTask().
140 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
142 static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
143 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
144 static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
146 (void)AudioInterfaceInfo
;
149 /** Determines if the given audio interface is ready for a sample to be read from it, and selects the streaming
150 * OUT endpoint ready for reading.
152 * \pre This function must only be called when the Device state machine is in the \ref DEVICE_STATE_Configured state or
153 * the call will fail.
155 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
157 * \return Boolean \c true if the given Audio interface has a sample to be read, \c false otherwise.
159 static inline bool Audio_Device_IsSampleReceived(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
160 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
161 static inline bool Audio_Device_IsSampleReceived(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
163 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(AudioInterfaceInfo
->State
.InterfaceEnabled
))
166 Endpoint_SelectEndpoint(AudioInterfaceInfo
->Config
.DataOUTEndpointNumber
);
167 return Endpoint_IsOUTReceived();
170 /** Determines if the given audio interface is ready to accept the next sample to be written to it, and selects
171 * the streaming IN endpoint ready for writing.
173 * \pre This function must only be called when the Device state machine is in the \ref DEVICE_STATE_Configured state or
174 * the call will fail.
176 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
178 * \return Boolean \c true if the given Audio interface is ready to accept the next sample, \c false otherwise.
180 static inline bool Audio_Device_IsReadyForNextSample(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
181 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
182 static inline bool Audio_Device_IsReadyForNextSample(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
184 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(AudioInterfaceInfo
->State
.InterfaceEnabled
))
187 Endpoint_SelectEndpoint(AudioInterfaceInfo
->Config
.DataINEndpointNumber
);
188 return Endpoint_IsINReady();
191 /** Reads the next 8-bit audio sample from the current audio interface.
193 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure
194 * ensure the correct endpoint is selected and ready for data.
196 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
198 * \return Signed 8-bit audio sample from the audio interface.
200 static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
201 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
202 static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
206 (void)AudioInterfaceInfo
;
208 Sample
= Endpoint_Read_Byte();
210 if (!(Endpoint_BytesInEndpoint()))
216 /** Reads the next 16-bit audio sample from the current audio interface.
218 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure
219 * that the correct endpoint is selected and ready for data.
221 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
223 * \return Signed 16-bit audio sample from the audio interface.
225 static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
226 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
227 static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
231 (void)AudioInterfaceInfo
;
233 Sample
= (int16_t)Endpoint_Read_Word_LE();
235 if (!(Endpoint_BytesInEndpoint()))
241 /** Reads the next 24-bit audio sample from the current audio interface.
243 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure
244 * that the correct endpoint is selected and ready for data.
246 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
248 * \return Signed 24-bit audio sample from the audio interface.
250 static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
251 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
252 static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
)
256 (void)AudioInterfaceInfo
;
258 Sample
= (((uint32_t)Endpoint_Read_Byte() << 16) | Endpoint_Read_Word_LE());
260 if (!(Endpoint_BytesInEndpoint()))
266 /** Writes the next 8-bit audio sample to the current audio interface.
268 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to
269 * ensure that the correct endpoint is selected and ready for data.
271 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
272 * \param[in] Sample Signed 8-bit audio sample.
274 static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
275 const int8_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
276 static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
279 Endpoint_Write_Byte(Sample
);
281 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
)
285 /** Writes the next 16-bit audio sample to the current audio interface.
287 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to
288 * ensure that the correct endpoint is selected and ready for data.
290 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
291 * \param[in] Sample Signed 16-bit audio sample.
293 static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
294 const int16_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
295 static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
296 const int16_t Sample
)
298 Endpoint_Write_Word_LE(Sample
);
300 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
)
304 /** Writes the next 24-bit audio sample to the current audio interface.
306 * \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to
307 * ensure that the correct endpoint is selected and ready for data.
309 * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
310 * \param[in] Sample Signed 24-bit audio sample.
312 static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
313 const int32_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
;
314 static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
,
315 const int32_t Sample
)
317 Endpoint_Write_Word_LE(Sample
);
318 Endpoint_Write_Byte(Sample
>> 16);
320 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
)
324 /* Disable C linkage for C++ Compilers: */
325 #if defined(__cplusplus)