2020-03-08 07:38:24 +01:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2021-11-20 08:14:38 +01:00
|
|
|
// "APPLICATION": "button",
|
2020-03-26 06:45:43 +01:00
|
|
|
// "APPLICATION": "spi",
|
2021-11-20 08:14:38 +01:00
|
|
|
"APPLICATION": "st7789_lcd",
|
2020-03-08 07:38:24 +01:00
|
|
|
},
|
|
|
|
},
|
2020-04-09 09:36:47 +02:00
|
|
|
"presentation": {
|
|
|
|
"focus": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"panel": "shared",
|
|
|
|
"clear": true,
|
|
|
|
},
|
2020-03-08 07:38:24 +01:00
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "all",
|
|
|
|
"type":"shell",
|
2020-04-10 11:02:00 +02:00
|
|
|
"command": "make all -j8",
|
2020-03-08 07:38:24 +01:00
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "flash",
|
|
|
|
"type":"shell",
|
|
|
|
"command": "make flash",
|
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "clean",
|
|
|
|
"type":"shell",
|
2020-04-10 11:02:00 +02:00
|
|
|
"command": "make clean -j8",
|
2020-03-08 07:38:24 +01:00
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "distclean",
|
|
|
|
"type":"shell",
|
2020-04-10 11:02:00 +02:00
|
|
|
"command": "make distclean",
|
2020-03-08 07:38:24 +01:00
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
2020-03-30 11:45:29 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "check",
|
|
|
|
"type":"shell",
|
|
|
|
"command": "make check",
|
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
2020-03-08 07:38:24 +01:00
|
|
|
}
|
2020-04-09 09:36:47 +02:00
|
|
|
]
|
2020-03-10 13:31:33 +01:00
|
|
|
}
|