launch.json 678 B

1234567891011121314151617181920
  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_EFTZ_.elf",
  11. "request": "launch",
  12. "type": "cortex-debug",
  13. "servertype": "jlink",
  14. "serverpath": "E:/j-flash-7.56b/JLinkGDBServerCL.exe",
  15. "interface": "swd",
  16. "device": "STM32F405RG",
  17. "svdFile": "STM32F405.svd"
  18. }
  19. ]
  20. }