mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
a9146920b9
* provide light example for acting as zigbee coordinator, router and end-device * remove unused componenent for example usage * remove unused variable * clean up unused header include for example * update the license header * update copyright * Add readme for instruction adding esp-zboss-lib component * esp-idf:update copy_right_check ignore file * CI: fix the ci check error from pipeline * sdkconfig: default set change for better user use * use Button (BOOT) as switch input * update the statemachine for debouncing * esp-zboss-lib: support lib 0.0.2 * fix warning issue from example
43 lines
802 B
Plaintext
43 lines
802 B
Plaintext
CONFIG_IDF_TARGET="esp32h2"
|
|
|
|
#
|
|
# libsodium
|
|
#
|
|
CONFIG_LIBSODIUM_USE_MBEDTLS_SHA=y
|
|
# end of libsodium
|
|
|
|
#
|
|
# 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
|
|
|
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=n
|
|
CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=n
|
|
|
|
#
|
|
# Zboss
|
|
#
|
|
CONFIG_ZB_ENABLED=y
|
|
CONFIG_ZB_ZCZR=y
|
|
# end of Zboss
|
|
# end of Component config
|