Files
zonebridge/.vscode/tasks.json

84 lines
1.7 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "ESP-IDF: Build",
"type": "shell",
"command": "bash",
"args": [
"-c",
"source ${workspaceFolder}/setup_esp_env.sh && idf.py build"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
}
},
{
"label": "ESP-IDF: Clean",
"type": "shell",
"command": "bash",
"args": [
"-c",
"source ${workspaceFolder}/setup_esp_env.sh && idf.py clean"
],
"presentation": {
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "ESP-IDF: Flash & Monitor",
"type": "shell",
"command": "bash",
"args": [
"-c",
"source ${workspaceFolder}/setup_esp_env.sh && idf.py flash monitor"
],
"presentation": {
"reveal": "always",
"focus": true,
"panel": "new"
}
},
{
"label": "ESP-IDF: Menuconfig",
"type": "shell",
"command": "bash",
"args": [
"-c",
"source ${workspaceFolder}/setup_esp_env.sh && idf.py menuconfig"
],
"presentation": {
"reveal": "always",
"focus": true,
"panel": "new"
}
},
{
"label": "ESP-IDF: Size Analysis",
"type": "shell",
"command": "bash",
"args": [
"-c",
"source ${workspaceFolder}/setup_esp_env.sh && idf.py size"
],
"presentation": {
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}