MacroBoard-rs/arduino/.vscode/tasks.json

20 lines
636 B
JSON
Raw Permalink Normal View History

2022-07-18 10:11:17 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Arduino Release Binary",
"type": "shell",
"command": "cargo build --release",
"problemMatcher": []
},
{
"label": "Write to Arduino",
"type": "shell",
"command": "ravedude uno -b 57600 ${workspaceFolder}/target/avr-atmega328p/release/arduino.elf",
"problemMatcher": [],
"dependsOn": "Build Arduino Release Binary"
}
]
}