这个其实就是一个pyocd的前端,需要自己安装pyocd,pip install pyocd即可。
作用是免得自己输命令行,CMSIS-DAP通用(现在叫DAP-LINK).
image.png

顺便介绍一下pyocd库

专门用来测试和调试Arm单片机的工具,包含下载通信调试的前端页面。

image.png

pyOCD is an open source Python based tool and package for programming and debugging Arm Cortex-M microcontrollers with a wide range of debug probes. It is fully cross-platform, with support for Linux, macOS, Windows, and FreeBSD.
复制代码
开源软件支持各种环境Linux, macOS, Windows, and FreeBSD,而且还包含了很多API例如

image.png

python用户可以一键安装

$ python3 -mpip install -U pyocd
复制代码
就可以直接体验啦~

GitHub地址放在下面

<u>https://github.com/pyocd/pyOCD</u>
复制代码