updated vscode files
This commit is contained in:
parent
9764c6c452
commit
7876d73499
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
@ -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,
|
||||
},
|
||||
|
16
.vscode/tasks.json
vendored
16
.vscode/tasks.json
vendored
@ -16,11 +16,23 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rust: cargo build minimal blinky",
|
||||
"label": "rust: cargo build pac blinky",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "minimal-blinky",
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky_pac",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rust: cargo build hal blinky",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky_hal",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit a1a0e19d75744c85badeaac7a13c0d0be13655da
|
||||
Subproject commit 8208582e8eb6699799c2eadc72d55d092925eded
|
@ -1 +1 @@
|
||||
Subproject commit 96df701b5f8ce2101348c6cc259ecf5e4ac01a18
|
||||
Subproject commit d9784284a843f20f31b581ea2d5dd2ba79566ca6
|
@ -1 +1 @@
|
||||
Subproject commit b6027d65d80b8a93acc7875e17cb32371bd9341d
|
||||
Subproject commit 3be416755c85a3fef0f03c11e7b703534fe6ecfa
|
Loading…
x
Reference in New Issue
Block a user