mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
68714c0e2d
primitive data type Removed config option ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE. Previously, the ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE option determined whether to store attributes as a blob or a primitive data type in NVS. Since this configuration is not backward compatible, we now read the attribute as a primitive data type if not found. If it's a blob, we read it and rewrite it as a primitive data type.
53 lines
1.3 KiB
Plaintext
53 lines
1.3 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
|
|
CONFIG_BT_NIMBLE_TASK_STACK_SIZE=5120
|
|
CONFIG_BT_NIMBLE_ACL_BUF_SIZE=255
|
|
|
|
# Enable FreeRTOS legacy API
|
|
CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y
|
|
|
|
# Enable lwip ipv6 autoconfig
|
|
CONFIG_LWIP_IPV6_AUTOCONFIG=y
|
|
|
|
# Use a custom partition table
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
|
|
# 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
|
|
|
|
# Watchdog
|
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=n
|
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=n
|
|
|
|
# Zboss
|
|
CONFIG_ZB_ENABLED=y
|
|
CONFIG_ZB_ZCZR=y
|
|
CONFIG_ZB_RADIO_MACSPLIT_UART=y
|
|
|
|
# Disable DS Peripheral
|
|
CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL=n
|
|
|
|
# Enable HKDF in mbedtls
|
|
CONFIG_MBEDTLS_HKDF_C=y
|
|
|
|
# Increase LwIP IPv6 address number to 6 (MAX_FABRIC + 1)
|
|
# unique local addresses for fabrics(MAX_FABRIC), a link local address(1)
|
|
CONFIG_LWIP_IPV6_NUM_ADDRESSES=6
|
|
|
|
# Increase matter console stack size
|
|
CONFIG_ESP_MATTER_CONSOLE_TASK_STACK=3072
|