Keil Assistant这个工程必须要想新增文件必须要在VScode打开文件夹下增加,没办法在这个插件上自己增加吗?
我自己写了一个调试插件
在c_cpp_properties.json的文件目录下创建launch.json文件
参考的内容
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Cortex Debug(JLINK)",
"cwd": "${workspaceRoot}",
"executable": "C:/Users/admin/Desktop/one/OBJ/LED.axf",
"request": "launch",
"type": "cortex-debug",
"servertype": "jlink",
"device": "STM32F40VG",
"svdFile": "E:/Keil_v5/Packs/Keil/STM32F4xx_DFP/2.14.0/CMSIS/SVD/STM32F40x.svd",
"interface": "swd",
"ipAddress": null,
"serialNumber": null
}
]
}
版主可以将这个功能集合的插件本身中,这样不就可以调试了吗