launch.json 637 B

123456789101112131415161718192021
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Cortex Debug",
  9. "cwd": "${workspaceRoot}",
  10. "executable": "./build/V9_AG_PMU_APP_.elf",
  11. "request": "launch",
  12. "type": "cortex-debug",
  13. "servertype": "jlink",
  14. "device": "GD32F103CB",
  15. "interface": "swd",
  16. "serverpath": "F:/Jlink56/JLinkGDBServerCL.exe"
  17. }
  18. ]
  19. }