Files
BC3S-firmware/.vscode/launch.json

19 lines
519 B
JSON
Raw Permalink Normal View History

2024-05-06 18:11:44 +08:00
{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "openocd",
"servertype": "openocd",
"executable": "build\\Debug\\BC3S.elf",
"runToEntryPoint": "main",
"configFiles": [
"interface/cmsis-dap.cfg",
"target/at32f415xx.cfg"
],
"toolchainPrefix": "arm-none-eabi",
}
]
}