你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

nRF52833 USB Dfu cause hash not match issue.

2021/12/9 17:46:28
  • sdk: 17.0.2
  • chip: nRF52833

使用nRF52833做dongle,通过usb_serial进行升级时提示hash值不匹配

NordicSemiException('Extended Error 0x{:02X}: {}'.format(resp[3], data))
pc_ble_driver_py.exceptions.NordicSemiException: Extended Error 0x0C: The hash of the received firmware image does not match the hash in the init packet.

在这里插入图片描述

由于17.0.2的sdk里面没有提供52833 usb类型的BootLoader,因此我们直接从ble类型的BootLoader改造成usb类型,就导致上述问题。

我们可以使用dfu\secure_bootloader\pca10100e_usb 工程,修改工程的芯片类型,flash,ram地址,可以解决这个hash值不匹配的问题。