Hello,
I'm struggling programming the Blinky app from examples to my NRF52 DK (pca10040)
Here is my script:# 1. Generate settingsnrfutil settings generate --application ./sdk16.0.0/examples/ble_central/ble_app_blinky_c/hex/ble_app_blinky_c_pca10040_s132.hex --application-version-string 2.4.2 --family NRF52 --bootloader-version 2 --bl-settings-version 2 --app-boot-validation VALIDATE_GENERATED_CRC settings.hex
# 2. Merge blink app with bootloader and settingsmergehex -m ./sdk16.0.0/examples/ble_central/ble_app_blinky_c/hex/ble_app_blinky_c_pca10040_s132.hex ./sdk16.0.0/examples/dfu/secure_bootloader/pca10040_s132_ble_debug/hex/secure_bootloader_ble_s132_pca10040_debug.hex settings.hex -o tmp.hex
There are other steps but it fails here :
+++ nrfutil settings generate --application ./sdk16.0.0/examples/ble_central/ble_app_blinky_c/hex/ble_app_blinky_c_pca10040_s132.hex --application-version-string 2.4.2 --family NRF52 --bootloader-version 2 --bl-settings-version 2 --app-boot-validation VALIDATE_GENERATED_CRC settings.hex
Note: Generating a DFU settings page with backup page included.This is only required for bootloaders from nRF5 SDK 15.1 and newer.If you want to skip backup page generation, use --no-backup option.
Generated Bootloader DFU settings .hex file and stored it in: settings.hex
Bootloader DFU Settings:* File: settings.hex* Family: nRF52* Start Address: 0x0007F000* CRC: 0x1360FE10* Settings Version: 0x00000002 (2)* App Version: 0x00004FB2 (20402)* Bootloader Version: 0x00000002 (2)* Bank Layout: 0x00000000* Current Bank: 0x00000000* Application Size: 0x0002B738 (177976 bytes)* Application CRC: 0xA488797C* Bank0 Bank Code: 0x00000001* Softdevice Size: 0x00000000 (0 bytes)* Boot Validation CRC: 0x2801247F* SD Boot Validation Type: 0x00000000 (0)* App Boot Validation Type: 0x00000001 (1)
+++ mkdir -p ./Release_52pca10040/2.4.2+++ mergehex -m ./sdk16.0.0/examples/ble_central/ble_app_blinky_c/hex/ble_app_blinky_c_pca10040_s132.hex ./sdk16.0.0/examples/dfu/secure_bootloader/pca10040_s132_ble_debug/hex/secure_bootloader_ble_s132_pca10040_debug.hex settings.hex -o tmp.hexParsing input hex files.Merging files.ERROR: The hex files cannot be merged since there are conflicts.
What am is missing ?