SumProject/.vscode/launch.json
2025-03-14 10:41:56 +08:00

20 lines
737 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "调试_pyocd",
"type": "cortex-debug",
"request": "launch",
"cwd": "${workspaceRoot}",
"servertype": "pyocd",
"serverpath": "d:\\DevTools\\env2\\.venv\\Scripts\\pyocd.exe",
"executable": "${workspaceRoot}/rt-thread.elf",
"targetId": "stm32f407vg",
"svdFile": "${workspaceRoot}/.vscode/STM32F407.svd",
"armToolchainPath": "d:/DevTools/env2/tools/gnu_gcc/arm_gcc/mingw/bin/",
"gdbPath": "d:\\DevTools\\env2\\tools\\gnu_gcc\\arm_gcc\\mingw\\bin\\arm-none-eabi-gdb.exe",
// "showDevDebugOutput": "raw" ,
}
]
}