can any one suggest me some tutorial,docs etc so i can understand how eprom is implemented in nrf52832.
can any one suggest me some tutorial,docs etc so i can understand how eprom is implemented in nrf52832.
You do not need any API to read flash memory. You can just read it directly like below which will read 4 bytes from given memory location.
#define flash_memory_address 0xsomething
uint32_t value = *(uint32_t *)flash_memory_address ;