| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- // 使用 IntelliSense 了解相关属性�
- // 悬�以查看现有属性的�述�
- // 欲了解更多信�,请访�: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "cwd": "${workspaceRoot}",
- "executable": "Project/Project.elf",
- "name": "pyocd",
- "request": "launch",
- "type": "cortex-debug",
- "targetId": "PY32F030x8",
- "runToEntryPoint": "main",
- "showDevDebugOutput": "none",
- "servertype": "pyocd",
- "cmsisPack": "${env:PYSDEPATH}\\packs\\PY32F0xx_DFP.pack",
- "svdFile": "${env:PYSDEPATH}\\svd\\PY32F030xx.svd"
- },
- {
- "cwd": "${workspaceRoot}",
- "type": "cortex-debug",
- "request": "launch",
- "name": "openocd",
- "servertype": "openocd",
- "executable": "Project/Project.elf",
- "runToEntryPoint": "main",
- "configFiles": [
- "interface/cmsis-dap.cfg",
- "target/py32f030.cfg"
- ],
- "toolchainPrefix": "arm-none-eabi",
- "svdFile": "${env:PYSDEPATH}\\svd\\PY32F030xx.svd"
- },
- {
- "cwd": "${workspaceRoot}",
- "type": "cortex-debug",
- "request": "launch",
- "name": "jlink",
- "servertype": "jlink",
- "interface": "swd",
- "executable": "Project/Project.elf",
- "runToEntryPoint": "main",
- "device": "PY32F030x8",
- "toolchainPrefix": "arm-none-eabi",
- "svdFile": "${env:PYSDEPATH}\\svd\\PY32F030xx.svd"
- }
- ]
- }
|