2023-01-08 12:12 PM
I would like to write and read into the EEPROM of the STM32F407 Discovery, but I can't figure out which section of the Reference Manual to look at.
First of all, is there an EEPROM on the F407 Discover?
If so, in which section/document can I find it?
Should I emulate it?
2023-01-08 03:02 PM
First, you have to learn to distinguish the microcontroller and the board. And no, the MCU doesn't have an integrated EEPROM and the board doesn't have an EEPROM chip. You can save the configuration in many ways on FLASH memory, powered SRAM or external devices, but that is not a task for beginners. Beginners should start and learn the basis and simple things first.
2023-01-09 05:00 AM
Thanks!