Add f407-discovery VSCode build task (#354)

This commit is contained in:
Nathan Schulte 2024-01-30 04:38:27 -06:00 committed by GitHub
parent a7f7760179
commit b5302936a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

16
.vscode/tasks.json vendored
View File

@ -195,6 +195,22 @@
"isDefault": true
}
},
{
"label": "Build Firmware (F407 \"basic\")",
"type": "shell",
"command": "make -j12 PROJECT_BOARD=f407-discovery",
"windows": {
"command": "wsl bash -lc 'make -j12 PROJECT_BOARD=f407-discovery'"
},
"options": {
"cwd": "${workspaceRoot}/firmware"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Unit Tests",
"type": "shell",