mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 11:03:05 +00:00
85a04cf3bf
Add pytest to CI Fix CI
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
|
|
#enable BT
|
|
CONFIG_BT_ENABLED=y
|
|
CONFIG_BT_NIMBLE_ENABLED=y
|
|
|
|
#disable BT connection reattempt
|
|
CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT=n
|
|
|
|
#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
|
|
|
|
# Remove this after `ENABLE_WIFI_AP` config has been deleted from chip component
|
|
CONFIG_ENABLE_WIFI_AP=n
|
|
|
|
# Enable OTA Requestor
|
|
CONFIG_ENABLE_OTA_REQUESTOR=y
|
|
|
|
# Enable optional attributes helper APIs
|
|
CONFIG_ESP_MATTER_ENABLE_OPTIONAL_ATTRIBUTES=y
|
|
|
|
# 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 |