Files
QDAC-firmware/.vscode/launch.json
2023-12-24 22:24:21 +08:00

17 lines
458 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "openocd",
"servertype": "openocd",
"executable": "build\\Debug\\violet_firmware_zf.elf",
"runToEntryPoint": "main",
"configFiles": [
"${workspaceFolder}/tools/wch-riscv.cfg"
]
}
]
}