stm32_devcontainer/.vscode/launch.json

19 lines
677 B
JSON
Raw Normal View History

2024-06-18 11:25:09 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "F3 - VN200",
"type": "cortex-debug",
"request": "launch",
"servertype": "openocd",
"cwd": "${workspaceRoot}/${env:PROJECT_NAME_VN200}",
"executable": "${workspaceRoot}/${env:PROJECT_NAME_VN200}/build/${env:PROJECT_NAME_VN200}.elf",
"configFiles": [
"/usr/share/openocd/scripts/interface/stlink.cfg",
"/home/stm32_devcontainer/.vscode/stm32f3x_custom.cfg"
],
//"svdFile": "${workspaceRoot}/path/to/your.svd",
"preLaunchTask": "build_vn200"
}
]
}