You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doc: Updated Matter docs to include recent v1.4.0.0 features
Updated documentation to list all new features
and configuration that were introduced in Matter v1.4.
Signed-off-by: Kamil Kasperczyk <[email protected]>
Copy file name to clipboardExpand all lines: doc/nrf/protocols/matter/getting_started/low_power_configuration.rst
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,10 +90,19 @@ The typical use case for a SIT device are actuators, meaning devices such as doo
90
90
Conversely, LIT devices are designed to be used for sensors or light switches, devices that only report data and are not controllable.
91
91
In such scenarios, the LIT device initiates communication and it is not able to answer with a small latency, but it can sleep for extended periods of time and achieve much lower power consumption than an SIT.
92
92
93
+
The LIT device starts operation in the SIT mode and remains in this state until the first ICD client registers to it.
94
+
This is necessary because the device is not responsive in the LIT mode, so client registration would be difficult.
95
+
Once the ICD client is registered, the ICD device switches to LIT mode in order to save the energy.
96
+
93
97
The LIT device implementation requires multiple new features, such as Check-In protocol (CIP) support, ICD client registration, and User Active Mode Trigger (UAT).
94
98
These features are not required for SIT device implementation, but can be optionally enabled.
95
99
96
-
To configure the LIT, CIP or UAT, use the following Kconfig options:
100
+
You can enable optional Dynamic SIT LIT switching (DSLS) support for the LIT device.
101
+
When enabled, the device can dynamically switch between SIT and LIT modes, even if it has an ICD client registered.
102
+
The primary use case for this feature is device types like Smoke/CO Alarm, allowing the device to work as SIT when using a wired power source and switch to LIT and using a battery power source in case of a power outage.
103
+
This feature is not available for the SIT device.
104
+
105
+
To configure the LIT, CIP, UAT or DSLS, use the following Kconfig options:
97
106
98
107
* :kconfig:option:`CONFIG_CHIP_ICD_LIT_SUPPORT` to enable the Long Idle Time device support.
99
108
* :kconfig:option:`CONFIG_CHIP_ICD_CHECK_IN_SUPPORT` to enable the Check-In protocol support.
@@ -103,9 +112,11 @@ To configure the LIT, CIP or UAT, use the following Kconfig options:
103
112
* :kconfig:option:`CONFIG_CHIP_ICD_UAT_SUPPORT` to enable the User Active Mode Trigger support.
104
113
The User Active Mode Trigger allows triggering the ICD device to move from the idle to active state and make it immediately responsive, for example to change its configuration.
105
114
This option is by default enabled for the LIT device.
106
-
107
-
The LIT, CIP and UAT features were not finalized for Matter v1.3 and they are marked as provisional, so it is not recommended to use them, though you can find some of the LIT implementation in the Matter SDK and Matter specification.
108
-
You can still enable them for testing purposes.
115
+
* :kconfig:option:`CONFIG_CHIP_ICD_SIT_SLOW_POLL_LIMIT` to limit the slow polling interval value while the device is in the SIT mode.
116
+
This option can be used to limit the slow poll interval of an LIT device while temporarily working in the SIT mode.
117
+
* :kconfig:option:`CONFIG_CHIP_ICD_DSLS_SUPPORT` to enable Dynamic SIT LIT switching (DSLS) support.
118
+
The DSLS support allows the application to dynamically switch between SIT and LIT modes, as long as the requirements for these modes are met.
119
+
This option is by default disabled for the LIT device.
109
120
110
121
Enable low power mode for the selected networking technology
Copy file name to clipboardExpand all lines: doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst
+28-2Lines changed: 28 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,11 +142,37 @@ Matter
142
142
Matter fork
143
143
+++++++++++
144
144
145
-
The Matter fork in the |NCS| (``sdk-connectedhomeip``) contains all commits from the upstream Matter repository up to, and including, the ``v1.3.0.0`` tag.
145
+
The Matter fork in the |NCS| (``sdk-connectedhomeip``) contains all commits from the upstream Matter repository up to, and including, the ``v1.4.0.0`` tag.
146
146
147
147
The following list summarizes the most important changes inherited from the upstream Matter:
148
148
149
-
|no_changes_yet_note|
149
+
* Added:
150
+
151
+
* Enhanced Network Infrastructure with Home Routers and Access Points (HRAP).
152
+
This provides requirements for devices such as home routers, modems or access points to create a necessary infrastructure for Matter products.
153
+
* Enhanced Multi-Admin that aims to simplify the smart home management from the user perspective.
154
+
This term includes several different features and in this release only Fabric Synchronization was fully delivered.
155
+
The Fabric Synchronization enables commissioning of devices from one fabric to another without requiring manual user actions, only user consent.
156
+
* Dynamic SIT LIT switching support that allows the application to switch between these modes, as long as the requirements for these modes are met.
157
+
This can be enabled using the :kconfig:option:`CONFIG_CHIP_ICD_DSLS_SUPPORT` Kconfig option.
158
+
* The Kconfig option :kconfig:option:`CONFIG_CHIP_ICD_SIT_SLOW_POLL_LIMIT` to limit the slow polling interval value for the device while it is in the SIT mode.
159
+
This can be used to limit the slow poll interval for the ICD LIT device while it is temporarily working in the SIT mode.
160
+
* New device types:
161
+
162
+
* Water heater
163
+
* Solar power
164
+
* Battery storage
165
+
* Heat pump
166
+
* Mounted on/off control
167
+
* Mounted dimmable load control
168
+
169
+
* Updated:
170
+
171
+
* Thermostat cluster with support for scheduling and preset modes, like vacation, and home or away settings.
172
+
* Electric Vehicle Supply Equipment (EVSE) with support for user-defined charging preferences, like specifying the time when the car will be charged.
173
+
* Occupancy sensing cluster with features like radar, vision, and ambient sensing.
174
+
* Intermittently Connected Devices feature with enhancements for the Long Idle Time (LIT) and Check-In Protocol.
175
+
With this enhancements, the state of this feature is changed from provisional to certifiable.
0 commit comments