add compile custom firmware vscode task

This commit is contained in:
Gennady Gurov 2024-11-21 10:06:33 -05:00 committed by GitHub
parent 0c870b1269
commit 6bba5034d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 1 deletions

18
.vscode/tasks.json vendored
View File

@ -211,6 +211,22 @@
"isDefault": true
}
},
{
"label": "Compile custom firmware",
"type": "shell",
"command": "./compile_firmware.sh",
"windows": {
"command": "wsl ./compile_firmware.sh "
},
"options": {
"cwd": "${workspaceRoot}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Simulator",
"type": "shell",
@ -228,4 +244,4 @@
}
}
]
}
}