skip to Main Content

Visual Studio Code – vscode: output of a command as part of a string in launch.json

I have my launch.json file that contains: { "request": "launch", "type": "cortex-debug", "name": "Rt117xDemo Start", "cwd": "${workspaceFolder}", "executable": "${workspaceFolder}/FW/image/Rt117xDemo.elf", "servertype": "jlink", "device": "MIMXRT1176xxxA_M7", "interface": "swd", "rtos": "FreeRTOS", "svdFile": "${workspaceFolder}/FW/bsp/device/MIMXRT1175_cm7.svd", "runToEntryPoint": "main", "preLaunchTask": "build", "serverArgs": [ "-gui" ], "preLaunchCommands": [ "directory…

VIEW QUESTION
Back To Top
Search