2021-01-03 11:14 AM
According to I2S example of STM32373C-EVAL SDK :
"Mono audio streaming is not supported (in order to play mono audio streams, each data should be sent twice on the I2S or should be duplicated on the source buffer. Or convert the stream in stereo before playing)."
I would like to send each data twice as it says. And I don't want to dublicate my buffer. Since the example uses HAL_I2S_Transmit_DMA() function, should I modify that function ? If so, how can I do it ?
Regards