Hi, I'm following the Buttonless DFU Template Application on nRF52 DK (PCA10040), SDK 17.0.2. From my understanding, we need to use the following codes to merge the following 4 hex files:
4 Files 1) s132_nrf52_7.2.0_softdevice.hex 2) ble_app_uart_pca10040_s132.hex (My own application's output hex file ) 3) bootloader_setting.hex 4) secure_bootloader_ble_s132_pca10040.hex (Provided application "secure_bootloader" output hex file ) Code: mergehex.exe -m ble_app_uart_pca10040_s132.hex s132_nrf52_7.2.0_softdevice.hex -o sd_and_app.hex mergehex.exe -m sd_and_app.hex bootloader_setting.hex -o sd_app_setting.hex mergehex.exe -m sd_app_setting.hex secure_bootloader_ble_s132_pca10040.hex -o sd_app_boot_setting_complete.hex

Then, use nRF Connect --> Programmer, earse the board, then drag and drop hex file sd_app_boot_setting_complete.hex to "File Memory Layout (red box)".

However, on my mobile phone's nRF Connect App, it didn't detect any Nordic BLE device. Anything wrong in my procedure, please?