I will need to store some data (and edit it again later) and fetch it later in the nrf51dk even after turning it off and back on.
How can I store such persistent data in the development kit?
I will need to store some data (and edit it again later) and fetch it later in the nrf51dk even after turning it off and back on.
How can I store such persistent data in the development kit?
Simple answer is: just pick the address and write to it. Better answer would be: see some storage examples from nRF5 SDK v12.3.0 (e.g. nRF5_SDK_12.3.0_d7731ad\examples\peripheral\flashwrite\main.c
or better fstorage
and fds
modules).
I'll look into it. Thank you.