launch.json 854 B

123456789101112131415161718192021222324
  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. "type": "java",
  9. "name": "Debug (Launch) - Current File",
  10. "request": "launch",
  11. "mainClass": "${file}",
  12. //"args": ["/dev/ttyUSB0", "16R6", "/tmp", "C0"]
  13. //"args": ["/dev/ttyUSB0", "16R4", "/tmp", "80"]
  14. "args": ["/dev/ttyUSB0", "16R6", "/tmp"]
  15. },
  16. {
  17. "type": "java",
  18. "name": "Debug (Launch)-App<DuPAL_Analyzer_44ed364>",
  19. "request": "launch",
  20. "mainClass": "info.hkzlab.dupal.analyzer.App",
  21. "projectName": "DuPAL-Analyzer"
  22. }
  23. ]
  24. }