Hello everybody,
I just started using fStorage. When I examine the example, it starts from write address 0x3e000.
err_code = nrf_fstorage_write(&fstorage, 0x3e000, m_hello_world, sizeof(m_hello_world), NULL);
APP_ERROR_CHECK(err_code);
Q-1 How is this write address determined?
Q-2 For example, when I write12 bytes data, what should I start with the next write address?
Thank you.