launch.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY
  2. //
  3. // PIO Unified Debugger
  4. //
  5. // Documentation: https://docs.platformio.org/page/plus/debugging.html
  6. // Configuration: https://docs.platformio.org/page/projectconf/section_env_debug.html
  7. {
  8. "version": "0.2.0",
  9. "configurations": [
  10. {
  11. "type": "platformio-debug",
  12. "request": "launch",
  13. "name": "PIO Debug",
  14. "executable": "/home/user/Schreibtisch/Projektarbeit/lern-tracking-system/.pio/build/uno/firmware.elf",
  15. "projectEnvName": "uno",
  16. "toolchainBinDir": "/home/user/.platformio/packages/toolchain-atmelavr/bin",
  17. "internalConsoleOptions": "openOnSessionStart",
  18. "preLaunchTask": {
  19. "type": "PlatformIO",
  20. "task": "Pre-Debug"
  21. }
  22. },
  23. {
  24. "type": "platformio-debug",
  25. "request": "launch",
  26. "name": "PIO Debug (skip Pre-Debug)",
  27. "executable": "/home/user/Schreibtisch/Projektarbeit/lern-tracking-system/.pio/build/uno/firmware.elf",
  28. "projectEnvName": "uno",
  29. "toolchainBinDir": "/home/user/.platformio/packages/toolchain-atmelavr/bin",
  30. "internalConsoleOptions": "openOnSessionStart"
  31. },
  32. {
  33. "type": "platformio-debug",
  34. "request": "launch",
  35. "name": "PIO Debug (without uploading)",
  36. "executable": "/home/user/Schreibtisch/Projektarbeit/lern-tracking-system/.pio/build/uno/firmware.elf",
  37. "projectEnvName": "uno",
  38. "toolchainBinDir": "/home/user/.platformio/packages/toolchain-atmelavr/bin",
  39. "internalConsoleOptions": "openOnSessionStart",
  40. "loadMode": "manual"
  41. }
  42. ]
  43. }