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

Use nrf_fstorage_sd with nrf_sdh_ble_enable

Hi, I'm using SDK15.2.0 and A nRF52832 for my project.

I followed the "flash_fstorage" example give by Nordic, to write in the flash memory in my project. 

When I run my program the function nrf_fstorage_erase(&fstorage, address, 1, NULL); and nrf_fstorage_write(&fstorage, address, &data, sizeof(data), NULL); work perfectly but after I had called nrf_sdh_ble_enable(), the functions nrf_fstorage_erase() and nrf_fstorage_write() don't work anymore even if I don't use BLE.

The SVCALL is never called to write or erase the flash, I still stuck in nrf_fstorage_is_busy().

Do I need to change some priorities in sdk_config.h ?

Thanks, Automne

Parents
  • Hi, 

    Just to make sure, are you initializing Fstorage with the Softdevice backend (p_fs_api = &nrf_fstorage_sd;), and not nrf_fstorage_nvmc?

    Thanks,

    Vidar 

  • Hi Vidar,

    I tried to implant fstorage in my code as you did in your example, I got the same problem. The functions nrf_fstorage_write() and nrf_fstorage_erase() work perfectly when the softdevice stack is disable.
    When the softdevice is enable nrf_fstorage_write() and nrf_fstorage_erase() work only once and I never get out of the SVCALL. I didn't get the events NRF_FSTORAGE_EVT_WRITE_RESULT or NRF_FSTORAGE_EVT_ERASE_RESULT.

    I don't call this functions from an interrupt.

    Which resource use SVCALL(nrf_fstorage_write) and SVCALL(nrf_fstorage_erase) ?

    Thanks, Automne

  • Hi Automne,

    The SD flash API operates in blocking mode when the Softdevice is disabled (i.e., flash API does not return before a flash operation is complete), instead of being asynchronous where completion of a flash operation is reported through Softdevice SoC events. I think the problem may be that the fstorage module is not receiving the completion events from the Softdevice, and therefore unable to process following flash operations.

    Please verify that following source files are included in your build (are responsible for forwarding SD events to SDK modules):

    - nrf_sdh.c

    - nrf_sdh_ble.c

    - nrf_sdh_soc.c

    Also, what IDE/Toolchain are you using? The issue may be related to linker settings. 

Reply
  • Hi Automne,

    The SD flash API operates in blocking mode when the Softdevice is disabled (i.e., flash API does not return before a flash operation is complete), instead of being asynchronous where completion of a flash operation is reported through Softdevice SoC events. I think the problem may be that the fstorage module is not receiving the completion events from the Softdevice, and therefore unable to process following flash operations.

    Please verify that following source files are included in your build (are responsible for forwarding SD events to SDK modules):

    - nrf_sdh.c

    - nrf_sdh_ble.c

    - nrf_sdh_soc.c

    Also, what IDE/Toolchain are you using? The issue may be related to linker settings. 

Children
Related