Hello everyone,
We're trying to create an application that has 2 modes, one is running our regular application and upon a special command, it switches to a "DFU" (via device manager) mode.
In the DFU mode I've adapted the example here:
https://github.com/nrfconnect/sdk-nrf/blob/main/samples/bluetooth/peripheral_lbs/src/main.c
It happens that this application requires the prj.conf directives: CONFIG_ESB & CONFIG_MCUMGR_SMP_BT.
I've compiled and flashed the application to the device. Application starts and automatically starts to listen for ESB packets(PRX).
As soon as it gets a packet, the application crashes without any information - even though I'm not advertising or working with regular BT (only ESB for BLE).
Disabling the directive CONFIG_MCUMGR_SMP_BT leads to a working version (but without DFU support).
Is there a way to overcome this issue?
Alternative, is there an example of how to access the mcuboot and switch image slots during runtime?