2020-07-26 11:16 PM
How to Upload some audio file .WAV . to STM32f030C8t6 controller based on memory capacity. Which is the right tool use to upload WAV file into flash memory and how to send it through UART commands.
My Actual Application is Upload WAV file to MCU and certain time need send that uploaded file to GSM module thorough AT Commands.
2020-07-26 11:46 PM
You can extend the memory using SPI flash or RAM chips or a SD card in SPI mode.
Note that .wav is a container format which can hold different types of audio data. So you should restrict the type of audio you support, e.g. 16-bit unsigned PCM data.
2020-07-27 12:08 AM
how to upload those WAV file into External memory
2020-07-27 01:25 AM
You have to implement that.
2020-07-27 02:30 AM
If you implement protocol and flashing code on the STM32 you could us a Terminal application and send file with X-Modem type implementation.
If you coded an external loader you might be able to use STM32 Cube Programmer
2020-07-27 03:22 AM
If you have choice to add SD card to your project, and your MCU support USB, you can access SD card through USB storage class and send files from PC to SD card. then you can use FATFS in MCU side to read SD card and use your audio.