2021-11-03 01:34:52 +01:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
2021-11-04 09:55:00 +01:00
|
|
|
{
|
|
|
|
"label": "rust: cargo build",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
|
|
"args": [
|
|
|
|
"build"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
2021-11-03 01:34:52 +01:00
|
|
|
{
|
2021-11-06 02:18:43 +01:00
|
|
|
"label": "rust: cargo build pac blinky",
|
2021-11-03 01:34:52 +01:00
|
|
|
"type": "shell",
|
|
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
|
|
"args": [
|
2021-11-06 02:18:43 +01:00
|
|
|
"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",
|
2021-11-03 01:34:52 +01:00
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
2021-11-06 19:02:52 +01:00
|
|
|
{
|
|
|
|
"label": "rust: cargo build hal tests",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
|
|
"args": [
|
|
|
|
"build", "-p", "vorago-reb1", "--example", "tests",
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
2021-11-03 01:34:52 +01:00
|
|
|
]
|
|
|
|
}
|