2021-12-07 00:54:20 +01:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "cortex-debug",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug LED Blinky",
|
|
|
|
"servertype": "jlink",
|
|
|
|
"gdbPath": "/usr/bin/gdb-multiarch",
|
|
|
|
"cwd": "${workspaceRoot}",
|
2021-12-08 11:40:34 +01:00
|
|
|
"device": "Cortex-M4",
|
2021-12-07 00:54:20 +01:00
|
|
|
"svdFile": "./va108xx-rs/svd/va416xx-base.svd",
|
|
|
|
"preLaunchTask": "rust: cargo build led blinky",
|
2021-12-08 11:40:34 +01:00
|
|
|
"executable": "${workspaceFolder}/target/thumbv7em-none-eabi/debug/examples/blinky",
|
2021-12-07 00:54:20 +01:00
|
|
|
"interface": "swd",
|
|
|
|
"runToMain": true,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|