# 编辑
vim或者vscode
# 编译
arm-none-eabi
# 烧写
openocd
若是默认安装,会在/usr/share/openocd/scripts/{interface,target} 有配置接口和目标版配置
示例:
openocd -f interface/stlink-v2.cfg -f target/stm32f1x.cfg
启动后,会提示telnet接口
另起shell, telnet localhost 4444登陆
telnet内,下面命令烧写
program xxx.bin verify reset exit 0x10000000
openocd还具有强大的调试功能,建议去发现。