Skip to content

Commit 94230ea

Browse files
authored
Merge branch 'master' into increase-websocket-retries
2 parents 8b3aa4c + 83f8665 commit 94230ea

File tree

134 files changed

+13935
-9262
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+13935
-9262
lines changed

config/esp32/components/chip/Kconfig

+13
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@ menu "CHIP Core"
202202
help
203203
Enable this option to use LwIP default IPv6 route hook for Route Information Option(RIO) feature.
204204

205+
config ENABLE_ENDPOINT_QUEUE_FILTER
206+
bool "Enable UDP Endpoint queue filter for mDNS Broadcast packets"
207+
depends on USE_MINIMAL_MDNS
208+
default y
209+
help
210+
Enable this option to start a UDP Endpoint queue filter for mDNS Broadcast packets
211+
205212
config ENABLE_LWIP_THREAD_SAFETY
206213
bool "Enable LwIP Thread safety options"
207214
default y
@@ -1038,6 +1045,12 @@ menu "CHIP Device Layer"
10381045

10391046
endmenu
10401047

1048+
config CHIP_ENABLE_BDX_LOG_TRANSFER
1049+
bool "Enable BDX log transfer"
1050+
default n
1051+
help
1052+
Enables the BDX protocol for diagnostics log transfer
1053+
10411054
menu "Matter OTA Image"
10421055

10431056
config CHIP_OTA_IMAGE_BUILD

config/telink/chip-module/Kconfig

+4
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ config CHIP_ENABLE_POWER_ON_FACTORY_RESET
216216
first 5 seconds after power on and this sequence repeated 5 times - factory
217217
reset will be involved.
218218

219+
config CHIP_TASK_STACK_SIZE
220+
int
221+
default 8192
222+
219223
config CHIP_USE_MARS_SENSOR
220224
bool "Use Mars board sensor"
221225
depends on SOC_SERIES_RISCV_TELINK_B9X && (BOARD_TLSR9518ADK80D || BOARD_TLSR9518ADK80D_RETENTION)

config/telink/chip-module/Kconfig.defaults

+4-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ config SETTINGS_NVS_SECTOR_SIZE_MULT
211211

212212
# Set sector counter of NVS
213213
config SETTINGS_NVS_SECTOR_COUNT
214-
default 10
214+
default 12
215215

216216
# Enable OpenThread
217217

@@ -329,4 +329,7 @@ config PWM_SHELL
329329
config OPENTHREAD_SHELL
330330
default n
331331

332+
config CHIP_TASK_STACK_SIZE
333+
default 4864 if PM
334+
332335
endif

0 commit comments

Comments
 (0)