Hi.
I saw lots of questions but I could't find answer about BLE & flash write func.
Setup is nrf52832, S332, SDK 15.3.0.
using ble, ant+, gpio, timer, adc,
in code, I try to flash write UICR 4bytes in ble event.
flash write func is execute when received op code from ble custom service write func.
I got it the issue is context switch.
I debugged and issue is nrf_fstorage_sys_evt_handler is not triggerd in nrf_fstorage_sd.c
I wait long time however, the func is not execute.
I stop that and I check flash memory, the value is already write.
now temporarily use delay 5ms.
5ms is enough wirte 4byte in flash i think.
it does not ensure it is write.
I thought that use callback or other event handler, escape ble event, and try flash write.
otherwise, I don't know how to do it.
Thank you.