PDU_Code/.vscode/launch.json

32 lines
941 B
JSON
Raw Normal View History

2024-05-12 14:08:58 +02:00
{
"configurations": [
{
"showDevDebugOutput": "parsed",
"cwd": "${workspaceRoot}",
"executable": "./build/PDU_FT24_Code.elf",
2024-05-12 14:08:58 +02:00
"name": "Debug STM32",
"request": "launch",
"type": "cortex-debug",
"servertype": "openocd",
"preLaunchTask": "Build STM",
"device": "stm32f302xc.s",
"configFiles": [
"openocd.cfg"
]
},
{
"showDevDebugOutput": "parsed",
"cwd": "${workspaceRoot}",
"executable": "./build/PDU_FT24_Code.elf",
2024-05-12 14:08:58 +02:00
"name": "Attach STM32",
"request": "attach",
"type": "cortex-debug",
"servertype": "openocd",
"preLaunchTask": "Build STM",
"device": "stm32f302xc.s",
"configFiles": [
"openocd.cfg"
]
}
]
}