I am using the ble_app_uart in combination with the f_storage example to write data to the flash memory. A issue which arises is that, when a softdevice is enabled, the nrf_fstorage_nvmc doesn't function. Is there any work-around present for this?
I am using the ble_app_uart in combination with the f_storage example to write data to the flash memory. A issue which arises is that, when a softdevice is enabled, the nrf_fstorage_nvmc doesn't function. Is there any work-around present for this?
Hi Jaydev,
When you use the fstorage with the softdevice you would need to use the backend: nrf_fstorage_sd instead of nrf_fstorage_nvmc.
This can be selected inside sdk_config.h , please look for FDS_BACKEND.
Hi Jaydev,
When you use the fstorage with the softdevice you would need to use the backend: nrf_fstorage_sd instead of nrf_fstorage_nvmc.
This can be selected inside sdk_config.h , please look for FDS_BACKEND.