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