Skip to main content
Minh Phan
Associate
December 14, 2017
Question

how to save voice recorder data on STM32F769 Discovery without using USB key ?

  • December 14, 2017
  • 6 replies
  • 1951 views
Posted on December 14, 2017 at 03:38

Hi everybody!

I have a project which uses STM32F769 Discover board.

In my project, I want to record voice, save that voice data and then play that data after I press user button.

I also referred to demonstration example (on STM32Cube_FW_F7_V1.8.0)  and found that, in that demonstration example, the recorded data is saved on USB.

Could you please tell a suggestion to save that voice data without using USB if my voice data is less than 1MB.

Thank you for your attention.

#audio-playback #stm32cubef7 #stm32f7-discovery #audio-recording
This topic has been closed for replies.

6 replies

Tesla DeLorean
Guru
December 14, 2017
Posted on December 14, 2017 at 19:18

Short term, the SDRAM

You could then write into QuadSPI FLASH, or to a MicroSD card

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
Minh Phan
Minh PhanAuthor
Associate
December 15, 2017
Posted on December 15, 2017 at 02:18

Could you tell me more detail about saving on SDRAM or QSPI memory, I try to save voice data to QSPI at address of 0x3F60000 but not successful.

Tesla DeLorean
Guru
December 15, 2017
Posted on December 15, 2017 at 06:44

The SDRAM when configured presents at 0xC0000000, and can be read and written like internal RAM, only slower.

The QSPI memory is going to require more involvement to write

STM32Cube_FW_F7_V1.8.0\Projects\STM32F769I-Discovery\Examples\BSP\Src\qspi.c

BSP_QSPI_Erase_Block()

BSP_QSPI_Write()

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
john doe
Senior III
December 14, 2017
Posted on December 14, 2017 at 19:18

the board also has an sd card slot