vscode配置51单片机环境c_cpp_properties.json文件配置
时间: 2023-08-16 07:09:18 浏览: 164
要在 VS Code 中配置 51 单片机环境,需要进行以下步骤:
1. 安装 C/C++ 扩展
在 VS Code 中搜索并安装 C/C++ 扩展,以便在代码编写时获得语法高亮、智能提示等功能。
2. 配置 c_cpp_properties.json 文件
在项目根目录下创建一个名为 c_cpp_properties.json 的文件,并按照以下格式进行配置:
```
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:/Keil_v5/ARM/INC"
],
"defines": [],
"compilerPath": "C:/Keil_v5/ARM/ARMCC/bin/armcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "${default}"
}
],
"version": 4
}
```
其中,配置项的含义如下:
- configurations:配置项数组。
- name:配置项名称。
- includePath:头文件搜索路径。
- defines:预处理器定义。
- compilerPath:编译器路径。
- cStandard:C 语言标准。
- cppStandard:C++ 标准。
- intelliSenseMode:IntelliSense 模式。
3. 配置 launch.json 文件
在项目根目录下创建一个名为 launch.json 的文件,并按照以下格式进行配置:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug 51 MCU",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/project_name",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:/Keil_v5/ARM/ARMCC/bin/arm-none-eabi-gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
```
其中,配置项的含义如下:
- name:配置项名称。
- type:调试器类型。
- request:请求类型。
- program:可执行文件路径。
- args:命令行参数。
- stopAtEntry:是否在程序入口处停止。
- cwd:工作目录。
- environment:环境变量。
- externalConsole:是否在外部控制台中运行。
- MIMode:GDB 后端模式。
- miDebuggerPath:GDB 路径。
- setupCommands:执行的命令。
配置完成后,就可以在 VS Code 中进行 51 单片机代码的编写、调试等操作了。
阅读全文