mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 18:53:28 +00:00
Button event callbacks are executed in the context of FreeRTOS Timer task. Reporting param updates from that causes stack overflow, specifically on ESP32-C3. As a temporary workaround, the stack size for FreeRTOS Timer task has been increased.
22 lines
662 B
Plaintext
22 lines
662 B
Plaintext
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
CONFIG_PARTITION_TABLE_SINGLE_APP=
|
|
CONFIG_PARTITION_TABLE_TWO_OTA=
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
|
CONFIG_PARTITION_TABLE_OFFSET=0x8000
|
|
CONFIG_PARTITION_TABLE_MD5=y
|
|
|
|
# mbedtls
|
|
CONFIG_MBEDTLS_DYNAMIC_BUFFER=y
|
|
CONFIG_MBEDTLS_DYNAMIC_FREE_PEER_CERT=y
|
|
CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA=y
|
|
|
|
# For BLE Provisioning using NimBLE stack (Not applicable for ESP32-S2)
|
|
CONFIG_BT_ENABLED=y
|
|
CONFIG_BTDM_CTRL_MODE_BLE_ONLY=y
|
|
CONFIG_BT_NIMBLE_ENABLED=y
|
|
|
|
# Temporary Fix for Timer Overflows
|
|
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=3120
|