Skip to main content
luke514
Associate III
January 8, 2023
Question

EEPROM on STM32F407 Discovery

  • January 8, 2023
  • 2 replies
  • 1481 views

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?

    This topic has been closed for replies.

    2 replies

    Piranha
    Principal III
    January 8, 2023

    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.

    luke514
    luke514Author
    Associate III
    January 9, 2023

    Thanks!