Files
resimulate/.vscode/launch.json
Niklas Bittner 4a12d1add4
Some checks failed
Build Python Package / build (push) Failing after 22s
fix: replay issues
2025-02-13 17:02:25 +01:00

65 lines
1.5 KiB
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": "reSIMulate: record",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/resimulate.py",
"console": "integratedTerminal",
"args": [
"--verbose",
"record",
"-o",
"${input:promptFilename}",
"--isd-r",
"${input:pickISDR}"
],
"justMyCode": false
},
{
"name": "reSIMulate: replay",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/resimulate.py",
"console": "integratedTerminal",
"args": [
"--verbose",
"replay",
"-i",
"${input:pickFile}",
"--target-isd-r",
"${input:pickISDR}"
],
"justMyCode": false
}
],
"inputs": [
{
"id": "pickFile",
"type": "command",
"command": "extension.commandvariable.file.pickFile",
"args": {
"description": "Path to recording file.",
"fromFolder": { "fixed": "${workspaceFolder}" }
}
},
{
"type": "promptString",
"id": "promptFilename",
"description": "Name of the recording file."
},
{
"type": "pickString",
"id": "pickISDR",
"description": "Pick the ISD-R",
"options": ["default", "5ber"],
"default": "default"
}
]
}