Hi, in my project I'm using fstorage library to store some information that should be kept even after the firmware update.
For this we are reserving the memory address as shown below:
NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
.evt_handler = fstorage_evt_handler,
.start_addr = 0x6F000,
.end_addr = 0x6FFFF,
};
This code was working great, but it started losing memory after an update.
What could be happening? Is it possible for this starting address to be different?