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

fs_store data lost after power off

Hi

I'm using fs_storage function to read and write in flash memory. Value successfully stored in evt->store.p_data but after power off it value become 0

switch(evt->id)
    {
        case FS_EVT_STORE:
            if(result == FS_SUCCESS)
            {
                stored_data = evt->store.p_data;
            }
    }

I'm using sdk11 with nrf528122.

Related