Skip to content

Commit 6c1a9c5

Browse files
[nrf toup][nrfconnect] Added config to enable report on active mode
Introduced Kconfig option that allows to enable an ICD to send data report on entering the active mode. Signed-off-by: Kamil Kasperczyk <[email protected]>
1 parent 297f762 commit 6c1a9c5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

config/nrfconnect/chip-module/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ if (CONFIG_CHIP_ENABLE_ICD_SUPPORT)
168168
matter_add_gn_arg_bool ("chip_enable_icd_checkin" CONFIG_CHIP_ICD_CHECK_IN_SUPPORT)
169169
matter_add_gn_arg_bool ("chip_enable_icd_user_active_mode_trigger" CONFIG_CHIP_ICD_UAT_SUPPORT)
170170
matter_add_gn_arg_bool ("chip_enable_icd_dsls" CONFIG_CHIP_ICD_DSLS_SUPPORT)
171+
matter_add_gn_arg_bool ("chip_icd_report_on_active_mode" CONFIG_CHIP_ICD_REPORT_ON_ACTIVE_MODE)
171172
endif()
172173

173174
if (CONFIG_CHIP_FACTORY_DATA OR CONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND)

config/zephyr/Kconfig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ config CHIP_ICD_UAT_SUPPORT
427427
means (e.g. button press) to trigger an ICD device to enter the active mode and become responsive.
428428

429429
config CHIP_ICD_DSLS_SUPPORT
430-
bool "Intermittenttly Connected Device Dynamic SIT LIT support"
430+
bool "Intermittently Connected Device Dynamic SIT LIT support"
431431
depends on CHIP_ICD_LIT_SUPPORT
432432
help
433433
Enables the Dynamic SIT LIT support in Matter. It allows the application to dynamically switch between
@@ -441,6 +441,11 @@ config CHIP_ICD_CLIENTS_PER_FABRIC
441441
Provides the Intermittently Connected Device number of clients per fabric. It determines the maximum number
442442
of clients per fabric that can be registered to receive notification from a device if their subscription is lost.
443443

444+
config CHIP_ICD_REPORT_ON_ACTIVE_MODE
445+
bool "Intermittently Connected Device report on active mode"
446+
help
447+
Enables an ICD to send data report to the subscribers on entering the active mode.
448+
444449
endif # CHIP_ENABLE_ICD_SUPPORT
445450

446451
config CHIP_THREAD_SSED

0 commit comments

Comments
 (0)