Initial project setup: ESP-IDF + C++ + FreeRTOS + WiFi + web server

This commit is contained in:
2026-04-01 20:34:59 -05:00
commit 4651d4c88a
24 changed files with 1032 additions and 0 deletions

83
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,83 @@
{
"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"
}
}
]
}