step/tool/vscode_config/launch.json
2018-01-23 08:58:46 +08:00

20 lines
673 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [{
"type": "gdb",
"request": "launch",
"name": "Debug Microcontroller",
"gdbpath": "D:/gcc-arm-none-eabi-5_4/bin/arm-none-eabi-gdb.exe",
"target": "${workspaceRoot}/output/Battery.axf",
"cwd": "${workspaceRoot}",
"autorun": [
"target remote localhost:2331",
"monitor reset",
"monitor halt",
"load output/Battery.axf"
]
}]
}