embassy-esp32/.vscode/launch.json
2025-06-26 20:29:04 +02:00

54 lines
1.6 KiB
JSON

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