Fix issue with CDC device demos causing broken communications when the device tries...
[pub/USBasp.git] / Demos / Device / ClassDriver / AudioInput / AudioInput.c
index 7b7ca2c..59d2129 100644 (file)
@@ -62,8 +62,7 @@ int main(void)
        \r
        for (;;)\r
        {\r
-               if (Microphone_Audio_Interface.State.InterfaceEnabled)\r
-                 ProcessNextSample();\r
+               ProcessNextSample();\r
 \r
                Audio_Device_USBTask(&Microphone_Audio_Interface);\r
                USB_USBTask();\r
@@ -95,6 +94,7 @@ void SetupHardware(void)
  */\r
 void ProcessNextSample(void)\r
 {\r
+       /* Check if the sample reload timer period has elapsed, and that the USB bus is ready for a new sample */\r
        if ((TIFR0 & (1 << OCF0A)) && Audio_Device_IsReadyForNextSample(&Microphone_Audio_Interface))\r
        {\r
                TIFR0 |= (1 << OCF0A);\r
@@ -107,7 +107,7 @@ void ProcessNextSample(void)
                AudioSample -= (SAMPLE_MAX_RANGE / 2));\r
 #endif\r
 \r
-               Audio_Device_WriteSample16(AudioSample);\r
+               Audio_Device_WriteSample16(&Microphone_Audio_Interface, AudioSample);\r
        }\r
 }\r
 \r