Skip to content

Commit 2ecfa4b

Browse files
Merge remote-tracking branch 'upstream/master' into add-new-command-dggen
2 parents b9404e0 + 4c4d8bf commit 2ecfa4b

File tree

227 files changed

+18130
-11010
lines changed

Some content is hidden

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

227 files changed

+18130
-11010
lines changed

.github/workflows/darwin-tests.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ jobs:
106106
run: |
107107
./scripts/run_in_build_env.sh \
108108
"./scripts/tests/run_test_suite.py \
109+
--runner darwin_framework_tool_python \
109110
--chip-tool ./out/darwin-x64-darwin-framework-tool-${BUILD_VARIANT_FRAMEWORK_TOOL}/darwin-framework-tool \
110111
--target-skip-glob '{TestAccessControlConstraints}' \
111112
run \

.github/workflows/issue-labeler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
triage:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: github/issue-labeler@v3.3 #May not be the latest version
14+
- uses: github/issue-labeler@v3.4 #May not be the latest version
1515
with:
1616
configuration-path: .github/issue-labeler.yml
1717
not-before: 2020-01-15T02:54:32Z

.github/workflows/kotlin-style.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: "detekt"
25-
uses: natiginfo/action-detekt-all@1.23.4
25+
uses: natiginfo/action-detekt-all@1.23.5
2626
# Detekt seems not to like circular symlinks, so we set up
2727
# explicit paths below
2828
with:

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)