ProjektMaus/.vscode/tasks.json

25 lines
369 B
JSON
Raw Permalink Normal View History

2023-03-23 05:37:37 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"label": "rust: Install to Pico (Mouse HID)"
},
{
"type": "cargo",
"command": "run",
"args": [
"--features",
"serial"
],
"problemMatcher": [
"$rustc"
],
"label": "rust: Install to Pico (Serial HID)"
}
]
}