DFU Failure updated from SDK14.1 to SDK17

I'm trying to update my devices from SDK 14.1 to SDK17.  I've followed the pc-util instructions to create an SD+BOOT package, then after I'll send the updated application.  Below is my DFU Package script

nrfutil settings generate --family NRF52 --application-version 1 --bootloader-version 1 --bl-settings-version 1 bootloader_settings.hex

nrfutil pkg generate --hw-version 2 --key-file legacy_dfu_private.pem --sd-req 0x9D --softdevice s132_nrf52_7.2.0_softdevice.hex --bootloader-version 2 --bootloader new_bootloader_nrf52832_xxaa_s132.hex  SD_BOOT_Package.zip

One note is even though I'm using PC_Util 6.1.0,  I wouldn't recognize the --sd-id command.  So its omitted

When I try to update my device with the above generated DFU .zip package I get the following error 

Parents
  • Hi, 

    Are you updating from s132_nrf52_5.0.0 to s132_nrf52_7.2.0? If so, see DFU package combinations:

    However, the two SDs may have different IDs. The first update requires --sd-req to be set to the ID of the old SD. The APP update requires the ID of the new SD. The new ID must be set using --sd-id parameter. 

     

    nrfutil pkg generate --hw-version 2 --key-file legacy_dfu_private.pem --sd-req 0x9D --softdevice s132_nrf52_7.2.0_softdevice.hex --bootloader-version 2 --bootloader new_bootloader_nrf52832_xxaa_s132.hex  SD_BOOT_Package.zip

    Try to add --sd-id 0x0101. 

    Regards,
    Amanda

Reply
  • Hi, 

    Are you updating from s132_nrf52_5.0.0 to s132_nrf52_7.2.0? If so, see DFU package combinations:

    However, the two SDs may have different IDs. The first update requires --sd-req to be set to the ID of the old SD. The APP update requires the ID of the new SD. The new ID must be set using --sd-id parameter. 

     

    nrfutil pkg generate --hw-version 2 --key-file legacy_dfu_private.pem --sd-req 0x9D --softdevice s132_nrf52_7.2.0_softdevice.hex --bootloader-version 2 --bootloader new_bootloader_nrf52832_xxaa_s132.hex  SD_BOOT_Package.zip

    Try to add --sd-id 0x0101. 

    Regards,
    Amanda

Children
Related