Hallo
I'm using sdk12 , S130 on NRF51822, so far successfully updated application, soft device and BL, however
lately after changing the size and starting address for the DFU the BL software fails to update itself and not even returns to BL state, the device fail completely after the end of the upload (after reaching 100% transfer)
To my understanding and after some debugging it happens after comparing the new banked version,
ret_val = nrf_dfu_mbr_compare((uint32_t*)BOOTLOADER_START_ADDR, (uint32_t*)src_addr, len);
and than
ret_val = nrf_dfu_mbr_copy_bl((uint32_t*)src_addr, len);
that is sending a SD_MBR_COMMAND_COPY_BL, command
at that points that system stops completely
would appreciate some insights, on why does this happens and can it be fixed
Thanks !
