- 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.
22 lines
696 B
JSON
22 lines
696 B
JSON
{
|
|
"C_Cpp.intelliSenseEngine": "default",
|
|
"idf.espIdfPathWin": "d:\\PROGRAMAS\\esp\\v5.5.2\\esp-idf",
|
|
"idf.pythonInstallPath": "/opt/esp/python_env/idf6.1_py3.12_env/bin/python",
|
|
"idf.openOcdConfigs": [
|
|
"board/esp32c6-builtin.cfg"
|
|
],
|
|
"idf.portWin": "detect",
|
|
"idf.toolsPathWin": "d:\\PROGRAMAS\\.espressif",
|
|
"idf.customExtraVars": {
|
|
"IDF_TARGET": "esp32c6"
|
|
},
|
|
"clangd.path": "d:\\PROGRAMAS\\.espressif\\tools\\esp-clang\\esp-19.1.2_20250312\\esp-clang\\bin\\clangd.exe",
|
|
"clangd.arguments": [
|
|
"--background-index",
|
|
"--query-driver=**",
|
|
"--compile-commands-dir=d:\\PROJECTS\\bomba-esp\\build"
|
|
],
|
|
"idf.port": "/dev/ttyACM0",
|
|
"idf.flashType": "UART"
|
|
}
|