2023-08-28 06:25 AM
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.
Solved! Go to Solution.
2023-08-28 08:50 AM
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.
2023-08-28 08:35 AM - edited 2023-08-28 08:40 AM
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.
2023-08-28 08:50 AM
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.