va108xx-rs/vscode/tasks.json

271 lines
7.5 KiB
JSON
Raw Normal View History

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-07 16:20:05 +01:00
"label": "rust: cargo build hal tests",
2021-11-03 01:34:52 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"board-tests",
"--features",
"rt"
2021-11-03 01:34:52 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-06 19:02:52 +01:00
{
2021-11-07 16:20:05 +01:00
"label": "rust: cargo build rtt",
2021-11-06 19:02:52 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"rtt-log",
2021-11-06 19:02:52 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-06 21:07:51 +01:00
{
2021-11-07 16:20:05 +01:00
"label": "rust: cargo build systick",
2021-11-06 21:07:51 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"timer-ticks",
"--features",
"rt"
2021-11-07 14:25:15 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-09 13:21:15 +01:00
{
2021-11-15 10:55:22 +01:00
"label": "rust: cargo build uart",
2021-11-09 13:21:15 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"uart",
2021-11-09 13:21:15 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-15 10:55:22 +01:00
{
"label": "rust: cargo build spi",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"spi",
2021-11-15 10:55:22 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-05 17:55:02 +01:00
{
"label": "rust: cargo build pwm",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"pwm",
"--features",
"rt"
2021-12-05 17:55:02 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-06 12:54:43 +01:00
{
"label": "rust: cargo build cascade",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"cascade",
"--features",
"rt"
2021-12-06 12:54:43 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-21 00:02:33 +01:00
{
"label": "rust: cargo build uart irq",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"uart-rtic",
2021-12-21 00:02:33 +01:00
],
"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",
}
},
2021-11-07 14:25:15 +01:00
{
2021-11-07 16:20:05 +01:00
"label": "rust: cargo build led blinky",
2021-11-07 14:25:15 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"blinky-leds",
2021-11-07 14:25:15 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
2021-11-07 16:20:05 +01:00
"label": "rust: cargo build button blinky",
2021-11-07 14:25:15 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"blinky-button-irq",
2021-11-06 21:07:51 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-02 11:46:47 +01:00
{
"label": "rust: cargo build temp sensor",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"adt75-temp-sensor",
2021-12-02 11:46:47 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-04 21:37:09 +01:00
{
"label": "rust: cargo build button blinky rtic",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"blinky-button-rtic",
2021-12-04 21:37:09 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-10 00:07:20 +01:00
{
"label": "rust: cargo build accelerometer",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"adxl343-accelerometer"
2021-12-10 00:07:20 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-12 01:25:50 +01:00
{
"label": "rust: cargo build adc",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"max11619-adc",
2021-12-12 01:25:50 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "reb1-nvm",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"nvm",
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rtic-example",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"rtic-example",
],
},
{
"label": "embassy-example",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"embassy-example",
],
},
2021-11-03 01:34:52 +01:00
]
}