You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

50 lines
1.0 KiB

{
"tasks": [
{
"label": "Build Libraries",
"command": "./ci/build_libs.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Build",
"command": "make",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Clean",
"command": "make clean",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Program DFU",
"command": "make program-dfu",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Rebuild and Program DFU",
"command": "make clean; make; make program-dfu",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
}
],
"version": "2.0.0"
}