This is the name that is advertised when the device is in DFU bootloader mode. I've copied the bootloader_secure_ble from /examples/dfu/ but I cannot find where to change this.
Please advise.
This is the name that is advertised when the device is in DFU bootloader mode. I've copied the bootloader_secure_ble from /examples/dfu/ but I cannot find where to change this.
Please advise.
It seems like the bootloader_secure_ble (SDK_ROOT/examples/dfu/bootloader_secure_ble) is referencing the ble_dfu library in (SDK_ROOT/components/libraries/bootloader/ble_dfu).
"DfuTarg" can be changed in SDK_ROOT/components/libraries/bootloader/ble_dfu/nrf_ble_dfu.c
It appears this has changed (at least for SES) and it is now in the sdk_config.h file included with the project
// <s> NRF_DFU_BLE_ADV_NAME - Default advertising name. #ifndef NRF_DFU_BLE_ADV_NAME #define NRF_DFU_BLE_ADV_NAME "DfuTarg" #endif