{ "version": "0.2.0", "configurations": [ { "type": "probe-rs-debug", "request": "launch", "name": "Launch", "cwd": "${workspaceFolder}", "preLaunchTask": "build-debug", "chip": "esp32s3", "flashingConfig": { "flashingEnabled": true, "haltAfterReset": true, "formatOptions": { "binaryFormat": "idf" } }, "coreConfigs": [ { "coreIndex": 0, "programBinary": "target/xtensa-esp32s3-none-elf/debug/${workspaceFolderBasename}", "rttEnabled": true, "rttChannelFormats": [ { "channelNumber": 0, "dataFormat": "Defmt", } ], } ] }, { "type": "probe-rs-debug", "request": "attach", "name": "Attach", "cwd": "${workspaceFolder}", "chip": "esp32s3", "coreConfigs": [ { "coreIndex": 0, "programBinary": "target/xtensa-esp32s3-none-elf/debug/${workspaceFolderBasename}", "rttEnabled": true, "rttChannelFormats": [ { "channelNumber": 0, "dataFormat": "Defmt", } ], } ] } ] }