acid/firmware/.vscode/launch.json

100 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2026-01-05 04:16:05 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "probe-rs debug restart",
"type": "probe-rs-debug",
"request": "launch",
"probe": "303a:1001",
"chip": "esp32s3",
"coreConfigs": [
{
2026-01-31 20:21:40 +01:00
"programBinary": "target/xtensa-esp32s3-none-elf/debug/acid-firmware",
"rttEnabled": true,
"rttChannelFormats": [
{
"channelNumber": 0,
"dataFormat": "String",
"mode": "BlockIfFull"
}
]
2026-01-31 20:21:40 +01:00
},
],
2026-01-05 04:16:05 +01:00
},
{
"name": "probe-rs release restart",
"type": "probe-rs-debug",
"request": "launch",
"probe": "303a:1001",
"chip": "esp32s3",
"coreConfigs": [
{
2026-01-31 20:21:40 +01:00
"programBinary": "target/xtensa-esp32s3-none-elf/release/acid-firmware",
"rttEnabled": true,
"rttChannelFormats": [
{
"channelNumber": 0,
"dataFormat": "String",
"mode": "BlockIfFull"
}
]
2026-01-31 20:21:40 +01:00
},
],
2026-01-05 04:16:05 +01:00
},
{
"preLaunchTask": "rust: cargo build",
"name": "probe-rs debug",
"type": "probe-rs-debug",
"request": "launch",
"flashingConfig": {
"flashingEnabled": true,
"formatOptions": {
"idf_partition_table": "partition-table.csv"
}
2026-01-05 04:16:05 +01:00
},
"probe": "303a:1001",
"chip": "esp32s3",
"coreConfigs": [
{
2026-01-31 20:21:40 +01:00
"programBinary": "target/xtensa-esp32s3-none-elf/debug/acid-firmware",
"rttEnabled": true,
"rttChannelFormats": [
{
"channelNumber": 0,
"dataFormat": "String",
"mode": "BlockIfFull"
}
]
2026-01-31 20:21:40 +01:00
},
],
2026-01-05 04:16:05 +01:00
},
{
"preLaunchTask": "rust: cargo build --release",
"name": "probe-rs release",
"type": "probe-rs-debug",
"request": "launch",
"flashingConfig": {
"flashingEnabled": true,
"formatOptions": {
"idf_partition_table": "partition-table.csv"
}
2026-01-05 04:16:05 +01:00
},
"probe": "303a:1001",
"chip": "esp32s3",
"coreConfigs": [
{
2026-01-31 20:21:40 +01:00
"programBinary": "target/xtensa-esp32s3-none-elf/release/acid-firmware",
"rttEnabled": true,
"rttChannelFormats": [
{
"channelNumber": 0,
"dataFormat": "String",
"mode": "BlockIfFull"
}
]
2026-01-31 20:21:40 +01:00
},
],
},
],
2026-01-05 04:16:05 +01:00
}