updated vscode files

This commit is contained in:
2021-11-06 02:18:43 +01:00
parent 9764c6c452
commit 7876d73499
5 changed files with 34 additions and 8 deletions

20
.vscode/launch.json vendored
View File

@@ -7,14 +7,28 @@
{
"type": "cortex-debug",
"request": "launch",
"name": "Debug Minimal Blinky",
"name": "Debug PAC Blinky",
"servertype": "jlink",
"gdbPath": "/usr/bin/gdb-multiarch",
"cwd": "${workspaceRoot}",
"device": "VA10820",
"svdFile": "./va108xx-rs/va108xx.svd",
"preLaunchTask": "rust: cargo build minimal blinky",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/minimal-blinky",
"preLaunchTask": "rust: cargo build pac blinky",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky_pac",
"interface": "jtag",
"runToMain": true,
},
{
"type": "cortex-debug",
"request": "launch",
"name": "Debug HAL Blinky",
"servertype": "jlink",
"gdbPath": "/usr/bin/gdb-multiarch",
"cwd": "${workspaceRoot}",
"device": "VA10820",
"svdFile": "./va108xx-rs/va108xx.svd",
"preLaunchTask": "rust: cargo build hal blinky",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky_hal",
"interface": "jtag",
"runToMain": true,
},