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
46 lines
1.1 KiB
Plaintext
46 lines
1.1 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"
|
|
CONFIG_PARTITION_TABLE_OFFSET=0xC000
|
|
|
|
# Enable chip shell
|
|
CONFIG_ENABLE_CHIP_SHELL=y
|
|
|
|
#enable lwIP route hooks
|
|
CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y
|
|
CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y
|
|
|
|
# Button
|
|
CONFIG_BUTTON_PERIOD_TIME_MS=20
|
|
CONFIG_BUTTON_LONG_PRESS_TIME_MS=5000
|
|
|
|
# disable softap by default
|
|
CONFIG_ESP_WIFI_SOFTAP_SUPPORT=n
|
|
|
|
# Disable DS Peripheral
|
|
CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL=n
|
|
|
|
# ESP-NOW Control Configuration
|
|
CONFIG_ESPNOW_CONTROL_AUTO_CHANNEL_SENDING=y
|
|
CONFIG_ESPNOW_CONTROL_RETRANSMISSION_TIMES=5
|
|
CONFIG_ESPNOW_CONTROL_FORWARD_TTL=10
|
|
CONFIG_ESPNOW_CONTROL_FORWARD_RSSI=-55
|
|
|
|
# Enable HKDF in mbedtls
|
|
CONFIG_MBEDTLS_HKDF_C=y
|