host-aprom/.vscode/launch.json

19 lines
506 B
JSON
Raw Normal View History

2024-06-29 20:17:34 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Host APROM Debug",
"preLaunchTask": "Build Host APROM",
"cwd": "${workspaceFolder}",
"executable": "./obj/host_aprom.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "_start",
"servertype": "openocd",
"serverpath": "../../openocd-0.12.0-3/bin/openocd",
"configFiles": ["interface/stlink-v2.cfg", "../../nucxxx.cfg"],
"showDevDebugOutput": "raw",
}
]
}