Bez popisu

launch.json 439B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "gdb",
  6. "request": "attach",
  7. "name": "Debug",
  8. "preLaunchTask": "start",
  9. "executable": "object/linked.o",
  10. "gdbpath": "arm-none-eabi-gdb",
  11. "target": "localhost:2345",
  12. "remote": true,
  13. "cwd": "${workspaceRoot}",
  14. "autorun": [
  15. ]
  16. }
  17. ]
  18. }