mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
41 lines
832 B
Plaintext
41 lines
832 B
Plaintext
CONFIG_IDF_TARGET="esp32c6"
|
|
|
|
# libsodium
|
|
CONFIG_LIBSODIUM_USE_MBEDTLS_SHA=y
|
|
|
|
# NIMBLE
|
|
CONFIG_BT_ENABLED=y
|
|
CONFIG_BT_NIMBLE_ENABLED=y
|
|
CONFIG_BT_NIMBLE_EXT_ADV=n
|
|
CONFIG_BT_NIMBLE_HCI_EVT_BUF_SIZE=70
|
|
CONFIG_USE_BLE_ONLY_FOR_COMMISSIONING=n
|
|
|
|
# FreeRTOS should use legacy API
|
|
CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y
|
|
|
|
# Disable lwip ipv6 autoconfig
|
|
CONFIG_LWIP_IPV6_AUTOCONFIG=n
|
|
|
|
# Use a custom partition table
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
|
|
# Use minimal mDNS
|
|
CONFIG_USE_MINIMAL_MDNS=y
|
|
CONFIG_ENABLE_EXTENDED_DISCOVERY=y
|
|
|
|
# Enable OTA Requestor
|
|
CONFIG_ENABLE_OTA_REQUESTOR=y
|
|
|
|
# Disable AP
|
|
CONFIG_ENABLE_WIFI_STATION=y
|
|
CONFIG_ENABLE_WIFI_AP=n
|
|
|
|
# Button
|
|
CONFIG_BUTTON_PERIOD_TIME_MS=20
|
|
CONFIG_BUTTON_LONG_PRESS_TIME_MS=5000
|
|
|
|
# Enable chip shell
|
|
CONFIG_ENABLE_CHIP_SHELL=y
|
|
|