命令行--使用命令行的方式实现RISCV单片机下载

1,找到该路径下这两个文件--->复制到工程的obj文件夹下

2,cd进入到你的工程obj文件夹下,并查看是否具有第一步中的两个文件

3,执行下载命令,

openocd.exe -f wch-riscv.cfg -c init -c halt -c "flash write_image 667.hex" -c exit,注意667.hex是待下载文件

待下载文件可以是hex,bin,elf。

 注意下载速度一般如下,如果太快或者太慢肯定有问题了。

 4,执行下软复位看下运行情况

openocd.exe -f wch-riscv.cfg -c init -c halt -c wlink_reset_resume -c exit

 运行OK。

5,还有一些常见命令

 校验: openocd.exe -f wch-riscv.cfg -c init -c halt -c "verify_image 778.hex" -c exit (778.hex为我的测试文件)

读保护查询;openocd.exe -f wch-riscv.cfg -c init -c halt -c "flash protect_check wch_riscv" -c exit

读保护使能:openocd.exe -f wch-riscv.cfg -c init -c halt -c "flash protect wch_riscv 0 last on" -c exit

读保护解除:openocd.exe -f wch-riscv.cfg -c init -c halt -c "flash protect wch_riscv 0 last off" -c exit

 

如此客户可自行编写脚本,实现自动化下载。

posted @ 2024-12-10 10:33  WCH_CH32  阅读(14)  评论(1编辑  收藏  举报