From 99d43336daf75344266f97267f20c712a23f2a7d Mon Sep 17 00:00:00 2001 From: Maciej Baczmanski Date: Mon, 15 Jul 2024 09:17:10 +0200 Subject: [PATCH] [nrf toup][nrfconnect] Fix ICD LIT connected configurations According to specification, if ICD LIT is supported, UAT and LITS features must be supported too. If `CHIP_ICD_LIT_SUPPORT` is selected, select CIP and UAT configs instead of implying them. Signed-off-by: Maciej Baczmanski --- config/zephyr/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/zephyr/Kconfig b/config/zephyr/Kconfig index b7a7c13e41..1d98185bc5 100644 --- a/config/zephyr/Kconfig +++ b/config/zephyr/Kconfig @@ -390,11 +390,11 @@ config CHIP_ICD_ACTIVE_MODE_THRESHOLD config CHIP_ICD_LIT_SUPPORT bool "Intermittenly Connected Device Long Idle Time support" - imply CHIP_ICD_CHECK_IN_SUPPORT - imply CHIP_ICD_UAT_SUPPORT + select CHIP_ICD_CHECK_IN_SUPPORT + select CHIP_ICD_UAT_SUPPORT help Enables the Intermittently Connected Device Long Idle Time support in Matter. - It also implies the ICD Check-In and UAT features support that are mandatory for LIT device. + It also selects the ICD Check-In and UAT features support that are mandatory for LIT device. config CHIP_ICD_CHECK_IN_SUPPORT bool "Intermittenly Connected Device Check-In protocol support"