projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
State information for class drivers is now zeroed out during enumeration (both in...
[pub/USBasp.git]
/
Demos
/
Device
/
ClassDriver
/
AudioInput
/
AudioInput.c
diff --git
a/Demos/Device/ClassDriver/AudioInput/AudioInput.c
b/Demos/Device/ClassDriver/AudioInput/AudioInput.c
index
a361ea1
..
7b7ca2c
100644
(file)
--- a/
Demos/Device/ClassDriver/AudioInput/AudioInput.c
+++ b/
Demos/Device/ClassDriver/AudioInput/AudioInput.c
@@
-40,12
+40,15
@@
* passed to all Audio Class driver functions, so that multiple instances of the same class
\r
* within a device can be differentiated from one another.
\r
*/
\r
* passed to all Audio Class driver functions, so that multiple instances of the same class
\r
* within a device can be differentiated from one another.
\r
*/
\r
-USB_ClassInfo_Audio_t Microphone_Audio_Interface =
\r
+USB_ClassInfo_Audio_
Device_
t Microphone_Audio_Interface =
\r
{
\r
{
\r
- .StreamingInterfaceNumber = 1,
\r
+ .Config =
\r
+ {
\r
+ .StreamingInterfaceNumber = 1,
\r
\r
\r
- .DataINEndpointNumber = AUDIO_STREAM_EPNUM,
\r
- .DataINEndpointSize = AUDIO_STREAM_EPSIZE,
\r
+ .DataINEndpointNumber = AUDIO_STREAM_EPNUM,
\r
+ .DataINEndpointSize = AUDIO_STREAM_EPSIZE,
\r
+ },
\r
};
\r
\r
/** Main program entry point. This routine contains the overall program flow, including initial
\r
};
\r
\r
/** Main program entry point. This routine contains the overall program flow, including initial
\r
@@
-59,7
+62,7
@@
int main(void)
\r
for (;;)
\r
{
\r
\r
for (;;)
\r
{
\r
- if (Microphone_Audio_Interface.InterfaceEnabled)
\r
+ if (Microphone_Audio_Interface.
State.
InterfaceEnabled)
\r
ProcessNextSample();
\r
\r
Audio_Device_USBTask(&Microphone_Audio_Interface);
\r
ProcessNextSample();
\r
\r
Audio_Device_USBTask(&Microphone_Audio_Interface);
\r