Skip to main content
Explorer II
August 28, 2023
Solved

Writing data on internal flash of STM32f76

  • August 28, 2023
  • 2 replies
  • 1171 views

Hello, I want to take data from ADC input and store them on the internal flash memory of my STM32f769i-discovery board. Can you help me about the use of flash memory? Thank you.

This topic has been closed for replies.
Best answer by Tesla DeLorean

The internal Flash is relatively slow and blocks execution. 

Consider perhaps the MicroSD and on-board QuadSPI memory as storage mediums.

The HAL has a number of examples for internal and external flash usage. Review.

2 replies

ST Employee
August 28, 2023

Hello @elif79, welcome to ST Community, 

Check this example in STM32CubeF7 examples to learn how to initialize, erase, and write data to the flash memory.

You can also find the HAL_FLASH functions in the stm32f7xx_hal_flash.c drivers

Hope that helps!

 

 

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
Tesla DeLorean
Tesla DeLoreanBest answer
Guru
August 28, 2023

The internal Flash is relatively slow and blocks execution. 

Consider perhaps the MicroSD and on-board QuadSPI memory as storage mediums.

The HAL has a number of examples for internal and external flash usage. Review.

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..