launch.json 718 B

1234567891011121314151617181920212223
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug @ Windows",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceRoot}\\rtthread.elf",
  9. "args": [],
  10. "stopAtEntry": true,
  11. "cwd": "${workspaceRoot}",
  12. "environment": [],
  13. "externalConsole": true,
  14. "miDebuggerServerAddress": "localhost:1234",
  15. "serverLaunchTimeout": 2000,
  16. "targetArchitecture": "ARM",
  17. "MIMode": "gdb",
  18. "miDebuggerPath": "arm-none-eabi-gdb.exe",
  19. "customLaunchSetupCommands": [],
  20. "launchCompleteCommand": "exec-run",
  21. },
  22. ]
  23. }