This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Is it possible to use flash memory to store data?

"Is it possible to use LPC1114 internal flash memory to store variable data?"

Is anyone can help me?

thanks

ANUS MUBEREK

regards, ANUS MUBEREK

Parents
  • Sounds a bit like homework.

    Ok, so how "variable" is this stuff?

    Generally you'd want to avoid writing stuff to flash over-and-over, if this is configuration or calibration data written a couple of times you could likely allocate an area at the end of flash to store and manage it. You could write code to emulate an EEPROM.

    If the stuff changes a lot, consider if there is any NVRAM available, or if you can add an EEPROM to the design.

Reply
  • Sounds a bit like homework.

    Ok, so how "variable" is this stuff?

    Generally you'd want to avoid writing stuff to flash over-and-over, if this is configuration or calibration data written a couple of times you could likely allocate an area at the end of flash to store and manage it. You could write code to emulate an EEPROM.

    If the stuff changes a lot, consider if there is any NVRAM available, or if you can add an EEPROM to the design.

Children