Hi
I am using nrf52832 s132 with s132_nrf52_7.2.0, sdk17
so far have successfully updated application and bootloader with an adaptation of buttonless DFU, now I have an issue with the SD.
For updating the SD I create a .zip file using the following script (Batch file) :
nrfutil pkg generate ^ --hw-version 52 ^ --sd-req 0x0101 ^ --softdevice s132_nrf52_7.2.0_softdevice.hex ^ --sd-id 0x0101 ^ --key-file private.key ^ FW_52_SD_dfupack_r.zip
I upload via the nRF Connect, the app shows 100% finished, the verification is successful according to the logs, and afterwards when I verify myself with memread I see that the relevant (to SD, 0x000000 - 0x26000) memory sectors are the same.
After the DFU for the SD, The application start running normally but soon fails, according to the CallStack it seems to be invoked from the app_sched_execute()

I am not sure what change would cause that, I think the app memory did not get damage since I checked the memory areas where the application is allocated and could not find any difference between before and after the SD upload, so the image of the app and the SD both look ok.
I did see a difference in the flash after the app data end and the second bank (from dual bank) of what seems to be the SD was stored during OTA.
Any suggestions to why something like this might occur?
Thanks!