add "clean firmware" task

This commit is contained in:
Matthew Kennedy 2024-03-20 11:20:31 -07:00
parent 5afbddec45
commit c9c87996dc
1 changed files with 16 additions and 0 deletions

16
.vscode/tasks.json vendored
View File

@ -3,6 +3,22 @@
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Clean Firmware",
"type": "shell",
"command": "make clean",
"windows": {
"command": "wsl bash -lc 'make clean'"
},
"options": {
"cwd": "${workspaceRoot}/firmware"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Proteus F4)",
"type": "shell",