sat-rs/embedded-examples/stm32h7-nucleo-rtic/vscode/launch.json
Robin Mueller 46ce3fc772
Some checks are pending
Rust/sat-rs/pipeline/pr-main Build started...
update folder name
2024-05-25 12:35:26 +02:00

22 lines
531 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"preLaunchTask": "${defaultBuildTask}",
"type": "probe-rs-debug",
"request": "launch",
"name": "probe-rs Debugging ",
"flashingConfig": {
"flashingEnabled": true
},
"chip": "STM32H743ZITx",
"coreConfigs": [
{
"programBinary": "${workspaceFolder}/target/thumbv7em-none-eabihf/debug/satrs-stm32h7-nucleo-rtic",
"rttEnabled": true,
"svdFile": "STM32H743.svd"
}
]
}
]
}