mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
40 lines
838 B
Plaintext
40 lines
838 B
Plaintext
CONFIG_IDF_TARGET="esp32s3"
|
|
|
|
CONFIG_ESPTOOLPY_FLASHSIZE="8MB"
|
|
|
|
#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
|
|
|
|
# Enable HKDF in mbedtls
|
|
CONFIG_MBEDTLS_HKDF_C=y
|
|
|
|
# ESP32-S3-DevKitC-1 Settings
|
|
# Buttons
|
|
CONFIG_BSP_BUTTONS_NUM=1
|
|
CONFIG_BSP_BUTTON_1_TYPE_GPIO=y
|
|
CONFIG_BSP_BUTTON_1_GPIO=0
|
|
CONFIG_BSP_BUTTON_1_LEVEL=0
|