Fix bugs in the Host mode Audio class driver.
[pub/lufa.git] / LUFA / Drivers / USB / Class / Host / Audio.h
index 7e9a48d..26d5376 100644 (file)
                        {\r
                                const struct\r
                                {\r
-                                       uint8_t  DataINPipeNumber; /**< Pipe number of the Audio interface's IN data pipe. */\r
-                                       uint8_t  DataOUTPipeNumber; /**< Pipe number of the Audio interface's OUT data pipe. */\r
+                                       uint8_t  DataINPipeNumber; /**< Pipe number of the Audio interface's IN data pipe. If this interface should not\r
+                                                                   *   bind to an IN endpoint, this may be set to 0 to disable audio input streaming for\r
+                                                                   *   this driver instance.\r
+                                                                   */\r
+                                       uint8_t  DataOUTPipeNumber; /**< Pipe number of the Audio interface's OUT data pipe. If this interface should not\r
+                                                                   *   bind to an OUT endpoint, this may be set to 0 to disable audio output streaming for\r
+                                                                   *   this driver instance.\r
+                                                                   */\r
                                } Config; /**< Config data for the USB class interface within the device. All elements in this section\r
                                           *   <b>must</b> be set or the interface will fail to enumerate and operate correctly.\r
                                           */\r
                                                             const uint8_t DataPipeIndex,\r
                                                             const uint8_t EndpointProperty,\r
                                                             const uint8_t EndpointControl,\r
-                                                            uint16_t* const DataLength,\r
-                                                            uint8_t* Data);\r
+                                                            uint16_t const DataLength,\r
+                                                            void* const Data);\r
 \r
                /* Inline Functions: */\r
                        /** General management task for a given Audio host class interface, required for the correct operation of\r
                                if ((USB_HostState != HOST_STATE_Configured) || !(AudioInterfaceInfo->State.IsActive))\r
                                  return false;\r
 \r
-                               Pipe_SelectPipe(AudioInterfaceInfo->Config.DataOUTPipeNumber);\r
-                               return Pipe_IsINReceived();\r
+                               bool SampleReceived = false;\r
+\r
+                               Pipe_SelectPipe(AudioInterfaceInfo->Config.DataINPipeNumber);\r
+                               Pipe_Unfreeze();\r
+                               SampleReceived = Pipe_IsINReceived();\r
+                               Pipe_Freeze();\r
+\r
+                               return SampleReceived;\r
                        }\r
 \r
                        /** Determines if the given audio interface is ready to accept the next sample to be written to it, and selects\r
                                if ((USB_HostState != HOST_STATE_Configured) || !(AudioInterfaceInfo->State.IsActive))\r
                                  return false;\r
 \r
-                               Pipe_SelectPipe(AudioInterfaceInfo->Config.DataINPipeNumber);\r
+                               Pipe_SelectPipe(AudioInterfaceInfo->Config.DataOUTPipeNumber);\r
                                return Pipe_IsOUTReady();\r
                        }\r
 \r
                                Sample = Pipe_Read_8();\r
 \r
                                if (!(Pipe_BytesInPipe()))\r
-                                 Pipe_ClearIN();\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearIN();\r
+                                       Pipe_Freeze();\r
+                               }\r
 \r
                                return Sample;\r
                        }\r
                                Sample = (int16_t)Pipe_Read_16_LE();\r
 \r
                                if (!(Pipe_BytesInPipe()))\r
-                                 Pipe_ClearIN();\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearIN();\r
+                                       Pipe_Freeze();\r
+                               }\r
 \r
                                return Sample;\r
                        }\r
                                Sample = (((uint32_t)Pipe_Read_8() << 16) | Pipe_Read_16_LE());\r
 \r
                                if (!(Pipe_BytesInPipe()))\r
-                                 Pipe_ClearIN();\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearIN();\r
+                                       Pipe_Freeze();\r
+                               }\r
 \r
                                return Sample;\r
                        }\r
                        {\r
                                Pipe_Write_8(Sample);\r
 \r
-                               if (Pipe_BytesInPipe() == AudioInterfaceInfo->State.DataINPipeSize)\r
-                                 Pipe_ClearOUT();\r
+                               if (!(Pipe_IsReadWriteAllowed()))\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearOUT();\r
+                                       Pipe_WaitUntilReady();\r
+                                       Pipe_Freeze();\r
+                               }\r
                        }\r
 \r
                        /** Writes the next 16-bit audio sample to the current audio interface.\r
                        {\r
                                Pipe_Write_16_LE(Sample);\r
 \r
-                               if (Pipe_BytesInPipe() == AudioInterfaceInfo->State.DataINPipeSize)\r
-                                 Pipe_ClearOUT();\r
+                               if (!(Pipe_IsReadWriteAllowed()))\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearOUT();\r
+                                       Pipe_WaitUntilReady();\r
+                                       Pipe_Freeze();\r
+                               }\r
                        }\r
 \r
                        /** Writes the next 24-bit audio sample to the current audio interface.\r
                                Pipe_Write_16_LE(Sample);\r
                                Pipe_Write_8(Sample >> 16);\r
 \r
-                               if (Pipe_BytesInPipe() == AudioInterfaceInfo->State.DataINPipeSize)\r
-                                 Pipe_ClearOUT();\r
+                               if (!(Pipe_IsReadWriteAllowed()))\r
+                               {\r
+                                       Pipe_Unfreeze();\r
+                                       Pipe_ClearOUT();\r
+                                       Pipe_WaitUntilReady();\r
+                                       Pipe_Freeze();\r
+                               }\r
                        }\r
                        \r
        /* Private Interface - For use in library only: */\r