launch.json 690 B

1234567891011121314151617181920
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Cortex Debug",
  9. "cwd": "${workspaceRoot}",
  10. "executable": "./rtthread.elf",
  11. "request": "launch",
  12. "type": "cortex-debug",
  13. "servertype": "jlink",
  14. "serverpath": "C:/Program Files (x86)/SEGGER/JLink/JLinkGDBServerCL.exe",
  15. "device": "MCIMXRT1052QSPI",
  16. "runToMain": true,
  17. "interface": "swd"
  18. }
  19. ]
  20. }