ubuntu下vscode+STM32CubeMX+openocd+stlinkv2搭建STM32开发调试下载环境

1、换源

清华源

bash 复制代码
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
# # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

复制上边内容进行修改

bash 复制代码
sudo vim /etc/apt/sources.list

换源后,更新当前的源

bash 复制代码
sudo apt update
sudo apt upgrade

2、下载相关软件

下载deb版本

bash 复制代码
sudo dpki -i 下载的VScode deb文件

安装插件

3、STM32CubeMX安装

STM32CubeMX


给他增加图标到菜单

bash 复制代码
vim /usr/share/applications/stm32CubeMX.desktop
json 复制代码
[Desktop Entry]
Type=Application
Name=STM32CubeMX
Comment=STM32 Development Environment
Encoding=UTF-8
StartupNotify=true
Terminal=false
Categories=Development;java;c;c++;
icon= ##########图标的路径,自己找一个就行
Exec= #########可执行文件的路径

3.1 新建一个点灯的小程序

一定一定记得这个,要不后期调试和下载报错





4 arm-none-eabi交叉编译工具安装

arm-none-eabi

解压后将bin文件夹加入PATH

bash 复制代码
vim ~/.bashrc
加入PATH=你的路径:$PATH
bash 复制代码
source ~/.bashrc

验证是否成功

bash 复制代码
arm-none-eabi-gcc --version
bash 复制代码
arm-none-eabi-gdb --version


如果这里你的GDB有问题,请一定要解决。我碰到了缺少 error while loading shared libraries: libncurses.so.5,解决方法参考

5、安装gdbserver

bash 复制代码
wget https://ftp.gnu.org/gnu/gdb/gdb-14.2.tar.xz

tar -xvf gdb-14.2.tar.xz

./configure

make

sudo make install

6、安装openocd

bash 复制代码
sudo apt-get install build-essential pkg-config autoconf automake libtool libusb-dev libusb-1.0-0-dev libhidapi-dev

sudo apt-get install libtool libsysfs-dev

git clone git://git.code.sf.net/p/openocd/code openocd

cd openocd

./bootstrap

./configure 

make

sudo make install

如果这里bootstrap阶段,告诉你子模块出错,碰到EOF提前结束,说明子模块下载失败,可以按照如下修改

bash 复制代码
vim .gitmodules
修改其子模块地址,可以去gitee上找镜像拉取,我这里jimtcl报错

6.1验证是否成功

bash 复制代码
openocd --version

7、STLink安装

依赖安装

bash 复制代码
sudo apt-get install libusb-1.0

sudo apt-get install cmake

sudo apt-get install libgtk-3-dev
bash 复制代码
git clone https://github.com/stlink-org/stlink

cd stlink

cmake .

make

cd bin

sudo cp st-* /usr/local/bin

cd ../lib

sudo cp *.so* /lib32

sudo cp config/udev/rules.d/49-stlinkv* /etc/udev/rules.d/

验证是否成功

bash 复制代码
lsusb

7.1

安装界面化烧录工具
ubuntu deb下载地址

bash 复制代码
sudo dpkg -i 你的下载文件.deb

8、进入Vscode进行点灯

在main.c的while(1)中加入

c 复制代码
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_7, 1);

点击vscode的调试,添加配置,选择

json 复制代码
{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "cwd": "${workspaceRoot}",
            "executable": "./build/你的项目生成的文件.elf",
            "name": "Debug with OpenOCD",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "openocd",
            "configFiles": [
                "/usr/share/openocd/scripts/interface/stlink-v2-1.cfg",
                "/usr/share/openocd/scripts/target/stm32f1x.cfg"
            ],
            "searchDir": [],
            "runToEntryPoint": "main",
            "showDevDebugOutput": "none"
        }
    ]
}

需要修改的是executable,变成你的elf文件
configFiles,变成你的stlink-v2-1.cfg(STLink驱动),stm32f1x.cfg(和你开发板型号有关)文件的地址,具体的可以查看

bash 复制代码
/usr/share/openocd/scripts/interface/stlink-v2-1.cfg
/usr/share/openocd/scripts/target/stm32f1x.cfg

进入终端,输入

bash 复制代码
make

即可编译。当然你也可以配置tasks.json

json 复制代码
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "make",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        
    ]
}

9、下载烧录

  1. 命令行烧录
bash 复制代码
st-flash write 你生成的hex文件 0x8000000
  1. UI界面烧录

  2. 配置tasks.json进行烧录

json 复制代码
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "make",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "download",
            "type": "shell",
            "command": "st-flash write 你生成的hex文件 0x8000000"
        }
    ]
}

10、调试


如果你卡在 IMPORTANT: Set "showDevDebugOutput": "raw" in "launch.json" to see verbose GDB transactions here. Very helpful to debug issues or report problems
的话,很大可能是你的arm-none-eabi-gdb出错了,可以尝试看看

bash 复制代码
arm-none-eabi-gdb -v

一切路径不能有中文,有中文很容易报错.OK,差不多就这样,折腾了两个晚上,记录一下,坑比较多,很少有写Ubuntu在STM32开发的

相关推荐
小珑也要变强40 分钟前
队列基础概念
c语言·开发语言·数据结构·物联网
c10638915146 小时前
STM32外设之LTDC/DMA2D—液晶显示(野火)
stm32·单片机·嵌入式硬件
LongRunning6 小时前
【快速笔记】freeRTOS
单片机
唯创知音7 小时前
电子烟智能化创新体验:WTK6900P语音交互芯片方案,融合频谱计算、精准语音识别与流畅音频播报
人工智能·单片机·物联网·音视频·智能家居·语音识别
MGT_97968 小时前
基于51单片机的台灯控制(Proteus仿真)
嵌入式硬件·51单片机·proteus
夜间去看海8 小时前
基于51单片机的倒计时音乐播放系统设计
单片机·嵌入式硬件·51单片机
aqymnkstkw9 小时前
2024年【电气试验】考试题库及电气试验模拟试题
大数据·c语言·人工智能·嵌入式硬件·安全
xxpro10 小时前
S3C2440开发板点亮LED灯+PWM定时器
单片机·嵌入式硬件
百里与司空10 小时前
学习CubeIDE——定时器开发
stm32·单片机·嵌入式硬件·学习
阿基米东11 小时前
英飞凌 PSoC6 评估板 CAPSENSE 触摸滑条应用示例
mcu·iot