sat-rs/embedded-examples/stm32h7-rtic/vscode/launch.json

22 lines
524 B
JSON
Raw Normal View History

2024-05-19 21:44:09 +02:00
{
"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-rtic",
"rttEnabled": true,
"svdFile": "STM32H743.svd"
}
]
}
]
}