I am using nRF51822. I want to know that how to perform file read, delete and write operations. Is there any API available for this. If file operations are not supported by nRF51822, then how can I store and read data from flash memory.
I am using nRF51822. I want to know that how to perform file read, delete and write operations. Is there any API available for this. If file operations are not supported by nRF51822, then how can I store and read data from flash memory.
There are no file operations because there's no filesystem and no operating system.
Take a look at the pstorage module and examples, that allows you to write data to and read data from flash.
A filesystem does not require an OS; eg, many microcontroller projects write files to SD Cards without the use of an OS...
A filesystem does not require an OS; eg, many microcontroller projects write files to SD Cards without the use of an OS...