- Added .devcontainer configuration for development environment. - Created .gitignore to exclude unnecessary files. - Configured C/C++ properties for ESP-IDF in VSCode. - Set up launch configurations for debugging. - Defined project settings for ESP-IDF in VSCode. - Created CMakeLists.txt for project build configuration. - Added README.md with project overview and usage instructions. - Established dependencies for Zigbee libraries in dependencies.lock. - Implemented main application logic in esp_zb_switch.c and esp_zb_switch.h. - Developed switch driver functionality in switch_driver.c and switch_driver.h. - Configured partition table in partitions.csv for NVS and application storage. - Set default SDK configuration in sdkconfig.defaults for project settings.
21 lines
416 B
JSON
21 lines
416 B
JSON
{
|
|
"name": "ESP-IDF QEMU",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"idf.espIdfPath": "/opt/esp/idf",
|
|
"idf.toolsPath": "/opt/esp",
|
|
"idf.gitPath": "/usr/bin/git"
|
|
},
|
|
"extensions": [
|
|
"espressif.esp-idf-extension",
|
|
"espressif.esp-idf-web"
|
|
]
|
|
}
|
|
},
|
|
"runArgs": ["--privileged"]
|
|
} |