Robin Mueller
3c8c455c6f
All checks were successful
Rust/va108xx-rs/pipeline/pr-main This commit looks good
252 lines
7.0 KiB
JSON
252 lines
7.0 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "rust: cargo build",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build hal tests",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--bin",
|
|
"board-tests",
|
|
"--features",
|
|
"rt"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build rtt",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"rtt-log",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build systick",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"timer-ticks",
|
|
"--features",
|
|
"rt"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build uart",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"va108xx-hal",
|
|
"--example",
|
|
"uart",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build spi",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"spi",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build pwm",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"pwm",
|
|
"--features",
|
|
"rt"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build cascade",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"cascade",
|
|
"--features",
|
|
"rt"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build uart irq",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"uart-irq-rtic",
|
|
"--features",
|
|
"rt"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "blinky-hal",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"--example",
|
|
"blinky",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build led blinky",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"blinky-leds",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build button blinky",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"blinky-button-irq",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build temp sensor",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"adt75-temp-sensor",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build button blinky rtic",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"blinky-button-rtic",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build accelerometer",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"adxl343-accelerometer"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rust: cargo build adc",
|
|
"type": "shell",
|
|
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
|
"args": [
|
|
"build",
|
|
"-p",
|
|
"vorago-reb1",
|
|
"--example",
|
|
"max11619-adc",
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
]
|
|
} |