rigol_scope/.vscode/launch.json

24 lines
768 B
JSON
Raw Permalink Normal View History

2024-07-16 16:49:39 +00:00
{
// 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"]
}
]
}