18 lines
593 B
JSON
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"
|
||
|
}
|
||
|
]
|
||
|
}
|