Ubuntu+vscode+openocd+arm-none-eadi

arm-none-eabi

arm-none-eabi-gcc

直接使用apt命令安装gcc -arm -none-eabi

apt gcc-arm-none-eabi

arm-none-eabi-gdb

需要翻墙下载deb,下载后直接用命令直接安装即可

openocd

直接使用apt命令直接安装

sudo apt install openocd

vscode

在vscode下载如下三个插件
在这里插入图片描述

make flash

1.在Makefile文件同目录建立openocd.cfg文件,并添加如下数据:

source [find interface/stlink-v2.cfg ]
source [find target/stm32f1x.cfg ]

2.在Makefile文件添加下列代码,实现烧录功能

flash:
	openocd -f openocd.cfg -c init -c halt -c "flash write_image erase $(BUILD_DIR)/$(TARGET).elf" -c reset -c shutdown

Debug

新建launch.json并添加如下数据:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Cortex Debug",
            "cwd": "${workspaceRoot}",
            //elf文件位置
            "executable": "./build/usart.elf",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "openocd",
            "configFiles": [

                "openocd.cfg"
            ]
        }
    ]
}

最后显示

在这里插入图片描述

  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值