launch.json 782 B

1234567891011121314151617181920212223242526
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Pico Debug",
  6. "cwd": "${workspaceRoot}",
  7. "executable": "rtthread-pico.elf",
  8. "request": "launch",
  9. "type": "cortex-debug",
  10. "servertype": "openocd",
  11. "gdbPath" : "gdb-multiarch",
  12. "device": "RP2350",
  13. "configFiles": [
  14. "interface/cmsis-dap.cfg",
  15. "target/rp2350.cfg"
  16. ],
  17. "svdFile": "packages/raspberrypi-pico-rp2350-sdk-latest/src/rp2350/hardware_regs/RP2350.svd",
  18. "runToEntryPoint": "platform_entry",
  19. "postRestartCommands": [
  20. "break platform_entry",
  21. "continue"
  22. ]
  23. }
  24. ]
  25. }