AUDIO_AudioCmd_FS gets called only once
I am trying to implement a simple soundcard from using STM32F407G-DISC1 board.
It utilizes STM32F407. I am using CubeIDE version 1.10.1
I configured the USB to be Full-speed Device Only. And I configured the middleware as Audio class.
I set the the heap size at 0x4000, and stack size at 0x2000.
When I connect it via the USB, Windows surely recognizes it as "Speakers".
I know that when the microcontroller receives Audio data, I should have access to the samples in the "AUDIO_AudioCmd_FS" function.
The problem is that, when I send Audio data to the microcontroller, the AUDIO_AudioCmd_FS function gets called only once, and it does not get called again.
No matter how many times I resend Audio data from the PC to the microcontroller, the AUDIO_AudioCmd_FS function does not get called again.
Can anyone please help me with this issue?
