- 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.
32 lines
650 B
Plaintext
32 lines
650 B
Plaintext
#
|
|
# Partition Table
|
|
#
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
|
CONFIG_PARTITION_TABLE_OFFSET=0x8000
|
|
CONFIG_PARTITION_TABLE_MD5=y
|
|
# end of Partition Table
|
|
|
|
#
|
|
# mbedTLS
|
|
#
|
|
CONFIG_MBEDTLS_HARDWARE_AES=n
|
|
CONFIG_MBEDTLS_HARDWARE_MPI=n
|
|
CONFIG_MBEDTLS_HARDWARE_SHA=n
|
|
CONFIG_MBEDTLS_CMAC_C=y
|
|
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
|
|
CONFIG_MBEDTLS_KEY_EXCHANGE_ECJPAKE=y
|
|
# end of TLS Key Exchange Methods
|
|
|
|
CONFIG_MBEDTLS_ECJPAKE_C=y
|
|
# end of mbedTLS
|
|
|
|
#
|
|
# Zboss
|
|
#
|
|
CONFIG_ZB_ENABLED=y
|
|
CONFIG_ZB_ZCZR=y
|
|
# end of Zboss
|
|
# end of Component config
|