stm32_devcontainer/.vscode/launch.json

31 lines
1.1 KiB
JSON
Raw Normal View History

2024-06-18 11:25:09 +02:00
{
"version": "0.2.0",
"configurations": [
{
2024-07-13 14:46:20 +02:00
"name": "VN200",
2024-06-18 11:25:09 +02:00
"type": "cortex-debug",
"request": "launch",
"servertype": "openocd",
"cwd": "${workspaceRoot}/projects/${env:PROJECT_NAME_VN200}",
"executable": "${workspaceRoot}/projects/${env:PROJECT_NAME_VN200}/build/${env:PROJECT_NAME_VN200}.elf",
2024-06-18 11:25:09 +02:00
"configFiles": [
"/usr/share/openocd/scripts/interface/stlink.cfg",
"/home/stm32_devcontainer/.vscode/stm32f3x_custom.cfg"
],
"preLaunchTask": "build_vn200"
2024-07-13 14:46:20 +02:00
},
{
"name": "EPSC",
"type": "cortex-debug",
"request": "launch",
"servertype": "openocd",
"cwd": "${workspaceRoot}/projects/epsc_ft24",
"executable": "${workspaceRoot}/projects/epsc_ft24/build/${env:PROJECT_NAME_EPSC}.elf",
"configFiles": [
"/usr/share/openocd/scripts/interface/stlink.cfg",
"/home/stm32_devcontainer/.vscode/stm32f3x_custom.cfg"
],
"preLaunchTask": "build_epsc"
2024-06-18 11:25:09 +02:00
}
]
}