How to Upload some audio file .WAV . to STM32f030C8t6 controller
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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.
- Labels:
-
Audio
-
STM32F0 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-07-27 12:08 AM
how to upload those WAV file into External memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-07-27 1:25 AM
You have to implement that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-07-27 2: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​
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-07-27 3: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.
