记一个nRF52 DFU的坑

最近给nRF52810做升级.
其中有一步是生成settings.hex

错误代码

@echo off
nrfutil settings generate --family NRF52 --application app.hex --application-version 1 --bootloader-version 1 --bl-settings-version 1 settings.hex
pause

记一个nRF52 DFU的坑_第1张图片
正确代码

@echo off
nrfutil settings generate --family NRF52810 --application app.hex --application-version 1 --bootloader-version 1 --bl-settings-version 1 settings.hex
pause

记一个nRF52 DFU的坑_第2张图片

你可能感兴趣的:(nRF52810,DFU)