rigol_scope/.vscode/launch.json
2024-07-16 18:49:39 +02:00

24 lines
768 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attempt license upgrade",
"type": "debugpy",
"request": "launch",
"program": "license_upgrade.py",
"console": "integratedTerminal",
"args": ["192.168.1.142"]
},
{
"name": "Remote scope tests",
"type": "debugpy",
"request": "launch",
"program": "remote_scope.py",
"console": "integratedTerminal",
"args": ["172.17.99.12"]
}
]
}