2021-12-21 11:04 PM
2022-03-15 10:19 AM
Hello,
According to the FP-AUD-BVLINKWB1 documentation, you can only perform full-duplex audio streaming at 16 kHz with ST BLE Sensor application.
Best Regards
2022-03-15 11:49 PM
Hi Remy,
according to this application note the FULLBAND example project works with 48kHz sampling rate:
Page 8 :
The example uses Opus compress algorithms to send the data and decompress once receiving it.
So i just want to know if i can turn it the way around and send 48kHz stereo from the evaluation board to the phone.
I know that i have to write my own app and modify the firmware but is it possible to do it?
2022-03-21 08:48 AM
Hello,
In order to send 48kHz stereo from STM32WB to smartphone you should modify both FW and App starting from fullduplex example.
FW: encoder initialization and input data passed to the encoder must be modified accordingly. Since stereo encoder requests lots of resources, keep in mind that WB resources could not be enough depending on what the application should do (send voice or music, one direction or bidirectional, simple or fullduplex, ecc..)
APP: the decoder must be initialized accordingly with the encoder (48 kHz, stereo ecc) and the audio out buffer must be modified.
Best Regards