mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
c6899403c1
- Replaced component esp32_mbedtls with mbedtls from requirements - Enabled CONFIG_MBEDTLS_HKDF_C option in all the sdkconfig.defaults - Removed secure cert dac provider from here and using one in connectedhomeip repo - Enabled CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL in sdkconfig.defaults.esp32h2
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Default to 921600 baud when flashing and monitoring device
|
|
CONFIG_ESPTOOLPY_BAUD_921600B=y
|
|
CONFIG_ESPTOOLPY_BAUD=921600
|
|
CONFIG_ESPTOOLPY_COMPRESSED=y
|
|
CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B=y
|
|
CONFIG_ESPTOOLPY_MONITOR_BAUD=115200
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
|
|
#enable BT
|
|
CONFIG_BT_ENABLED=y
|
|
CONFIG_BT_NIMBLE_ENABLED=y
|
|
|
|
#enable lwip ipv6 autoconfig
|
|
CONFIG_LWIP_IPV6_AUTOCONFIG=y
|
|
|
|
# Use a custom partition table
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
|
|
|
# Testing Options
|
|
CONFIG_USE_TEST_SETUP_PIN_CODE=20212020
|
|
CONFIG_USE_TEST_SETUP_DISCRIMINATOR=0xF0
|
|
|
|
# Enable chip shell
|
|
CONFIG_ENABLE_CHIP_SHELL=y
|
|
CONFIG_ESP_MATTER_CONSOLE_TASK_STACK=4096
|
|
|
|
#enable lwIP route hooks
|
|
CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y
|
|
CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y
|
|
|
|
# Increase Stack size
|
|
CONFIG_CHIP_TASK_STACK_SIZE=15360
|
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=10240
|
|
|
|
# Increase udp endpoints num for commissioner
|
|
CONFIG_NUM_UDP_ENDPOINTS=16
|
|
|
|
# Enable Controller and commissioner
|
|
CONFIG_ESP_MATTER_CONTROLLER_ENABLE=y
|
|
CONFIG_ESP_MATTER_COMMISSIONER_ENABLE=y
|
|
|
|
# Use compact attribute storage mode
|
|
CONFIG_ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE=y
|
|
|
|
# Enable HKDF in mbedtls
|
|
CONFIG_MBEDTLS_HKDF_C=y
|