Hi,
I wanna my appication run first instead of bootloader. Here is my steps:
Create bootloader_setting: nrfutil settings generate --family NRF51 --application application.hex --application-version 1 --bootloader-version 1 --bl-settings-version 1 bootloader_setting.hex --no-backup
Merge bootloader and bootloader_setting: mergehex --merge bootloader_setting.hex bootloader.hex --output output.hex
Merge output.hex and appication.hex: mergehex --merge output.hex and appication.hex --output combine.hex
Then i flash combine.hex
i am sucessful to run application instead of bootloader but when i start DFU, i stuck in connection like image

Is there anything wrong in my steps?