micro-rust/.vscode/launch.json

33 lines
735 B
JSON
Raw Normal View History

2024-10-17 10:02:00 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "probe-rs-debug",
"request": "launch",
"name": "debug",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "probe-rs",
"runtimeArgs": ["dap-server"],
"chip": "nRF52833_xxAA",
"flashingConfig": {
"flashingEnabled": true,
"haltAfterReset": false,
"formatOptions": {
"binaryFormat": "elf"
}
},
"coreConfigs": [
{
"coreIndex": 0,
"programBinary": "target/thumbv7em-none-eabihf/debug/micro-rust",
"svdFile": "nrf52833.svd"
}
],
"env": {
"RUST_LOG": "debug"
},
"consoleLogLevel": "Console"
}
]
}