使用环境
<!-- 必须 告知插件运行的环境,帮助开发者定位问题 -->
- 操作系统版本:
- 操作系统平台(x86/x64):
- VsCode 版本:1.69
- EIDE 插件版本:3.8.8
- C/C++ 插件版本:
- 何种编译器(keil_c51/sdcc/armcc5/armgcc/...):
- 编译器版本(非编译问题可忽略):
描述问题
<!-- 使用简明清晰的语言描述您的问题 -->
屏幕截图
<!--使用一些截图能够更好地展现问题 -->
{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "jlink",
"servertype": "jlink",
"interface": "jtag",
"executable": ".\build\Release\Exe\multi_role.out",
"runToEntryPoint": "main",
"device": "CC2642R1F",
"svdFile": "cc2642r1f.svd",
},
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "openocd-xds110",
"servertype": "openocd",
"executable": ".\build\Release\Exe\multi_role.out",
"runToEntryPoint": "main",
"svdFile": "cc2642r1f.svd",
"configFiles": [
"interface/xds110.cfg",
"target/ti_cc26x2.cfg",
],
},
]
}
期望现象
<!--您期望应该产生的,但实际上却没有发生的结果-->