今天在玩开发板时不小心下载了个有问题的程序,然后就悲惨剧了。无法往芯片中烧写程序了。每次想下载程序都会弹出如下的两个过错对话框。
然后音讯窗口显现如下的过错信息。
- JLinkinfo:
- ————
- DLL:V4.15n,compiledJun18201019:55:09
- Firmware:J-LinkARMV8compiledMay20201017:07:46
- Hardware:V8.00
- S/N:24446459
- Feature(s):RDI,FlashDL,FlashBP,JFlash
- *JLinkInfo:CouldnotmeasuretotalIRlen.TDOisconstanthigh.
- **JLinkWarning:Nomatchingcorefound.
- *JLinkInfo:CouldnotmeasuretotalIRlen.TDOisconstanthigh.
- *JLinkInfo:CouldnotmeasuretotalIRlen.TDOisconstanthigh.
- *JLinkInfo:ResettingtargetusingRESETpin
- *JLinkInfo:HaltingCPUcore
- **JLinkWarning:Received0ascoreId.
- ***JLinkError:CouldnotfindsupportedCPUcoreonJTAGchain
- BadJTAGcommunication:WritetoIR:Expected0x1,got0x7(TAPCommand:2)@Off0x5.
百度了一下,没找到什么有用的信息。仍是要自己想办法处理。首要,我的JLink和STM32芯片都不大可能就这么坏掉了。多半是烧写进去的软件有些问题,占用了相应的IO管腿,导致无法使用JLink与之通讯。那就想办法不让这个过错的程序运行了。STM32中是自带了BootLoader的,切换进BootLoader中就能够了。详细的办法便是经过BOOT1、BOOT0两个跳线来挑选发动形式。
断电,改跳线,从头上电,进入BootLoader形式。用JLink下载新的程序,下载成功。再断电,把跳线改回来,从头上电,一切正常。问题处理!