stm32_serDes_protobuf_project/.vscode/launch.json
2024-04-02 12:47:04 +03:00

18 lines
593 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Cortex Debug",
"cwd": "${workspaceFolder}",
"executable": "${workspaceRoot}/build/stm32.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "stutil",
"preLaunchTask" : "run OpenOCD",
"preRestartCommands" : [ "load", "enable breakpoint", "monitor reset" ],
"showDevDebugOutput" : "raw",
"svdFile" : "${workspaceRoot}/STM32F439.svd"
}
]
}