This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

eprom implementation in nrf5

can any one suggest me some tutorial,docs etc so i can understand how eprom is implemented in nrf52832.

Parents
  • What endnode said is correct. nRF chips do not have in built EEPROM. That said, they can be simulated and we have an example that does this simulation on RAM. You can find this at SDK\examples\peripheral\twi_master_with_twis_slave\eeprom_simulator.h file.

    This example was designed to simulate EEPROM on Nordic chip for booting the code. That is it assigns configurable part of flash as EEPROM and loads the code from it to RAM and runs it. The interface with simulated EEPROM is TWI and you can later decide to switch from/to simulated EEPROM to external EEPROM without changing the code. The header file is quite simple and see the main.c to see how it works. If you have questions you can ask here.

  • i have run the compile example flash write .and write a character on flash memory.now i want to read this value from flash .is u can help how i did this

Reply Children
No Data
Related