{ // 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" } ] }