Hi
I am using nRF52DK, SDK 15.0, SD 6.0.0, multiperipheral based example with secure bootloader, FDS (7 FDS_VIRTUAL_PAGES). Uploading new software works (not tested thorougly).
Project building with SES, then flashing with a script:
then F5 to begin debugging with SES.
Sometimes (maybe 15% of times) when I try to pair (using master Androd device) I get:
<error> app: ERROR 2 [NRF_ERROR_SOFTDEVICE_NOT_ENABLED] at C:\repo\pikflometr\multiperipheral\main.c:1808 PC at: 0x00033AA7
which is from PM_EVT_ERROR_UNEXPECTED case
It tells me that NRF_ERROR_SOFTDEVICE_NOT_ENABLED which is silly because I have already connected with an advertising device, so BLE stack is up and running.
After some digging I have found out that peer_data_delete_process() calls send_unexpected_error()
So it looks like sometimes the FDS module does not initialize.
I added some logs and here is what I got after booting:
FAILING CASE:
WORKING CASE:
So all the difference is the FDS event logs don't appear occassionaly.
The logs that makes difference between failing and working case are in peer_data_storage.c:
---
Furthermore I have added those logs to observe the state of flash memory:
And here is the output (called after booting before trying to pair):
FAILING CASE:
WORKING CASE:
What more info do you need to guide me to solve this?
Thanks