Files
BC4D-firmware/.vscode/launch.json
2024-05-06 23:53:35 +08:00

19 lines
519 B
JSON

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