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

16
.vscode/tasks.json vendored
View File

@@ -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",