Files
BC3D-firmware/.vscode/launch.json

19 lines
519 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "openocd",
"servertype": "openocd",
"executable": "build\\Debug\\BC3D.elf",
"runToEntryPoint": "main",
"configFiles": [
"interface/cmsis-dap.cfg",
"target/at32f413xx.cfg"
],
"toolchainPrefix": "arm-none-eabi",
}
]
}