Files
QDAC-firmware/.vscode/launch.json

17 lines
458 B
JSON
Raw Normal View History

2023-12-11 21:45:06 +08:00
{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
2023-12-16 23:02:36 +08:00
"name": "openocd",
"servertype": "openocd",
2023-12-11 21:45:06 +08:00
"executable": "build\\Debug\\violet_firmware_zf.elf",
"runToEntryPoint": "main",
2023-12-16 23:02:36 +08:00
"configFiles": [
"${workspaceFolder}/tools/wch-riscv.cfg"
]
2023-12-11 21:45:06 +08:00
}
]
}