sat-rs/embedded-examples/stm32f3-disco-rtic/vscode/launch.json
Robin Mueller 8d27bdf3bf
Some checks are pending
Rust/sat-rs/pipeline/head Build queued...
Update embedded examples
2024-05-25 12:32:46 +02:00

22 lines
530 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-stm32f3-disco-rtic",
"rttEnabled": true,
"svdFile": "STM32F303.svd"
}
]
}
]
}