sat-rs/satrs-example-stm32f3-disco/vscode/launch.json
Robin Mueller dd1417a368
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
Upgrade example to use defmt/RTT/probe-rs
2024-03-28 23:47:07 +01:00

23 lines
534 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"preLaunchTask": "${defaultBuildTask}",
"type": "probe-rs-debug",
"request": "launch",
"name": "probe-rs Debugging ",
"flashingConfig": {
"flashingEnabled": true
},
"chip": "STM32F303VCTx",
"coreConfigs": [
{
"programBinary": "${workspaceFolder}/target/thumbv7em-none-eabihf/debug/satrs-example-stm32f3-disco",
"rttEnabled": true,
"svdFile": "STM32F303.svd"
}
]
}
]
}