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
Copy file name to clipboardexpand all lines: docs/about.rst
+8-9
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,16 @@ About Zigbee protocol
6
6
.. note::
7
7
.. include:: /includes/experimental_note.txt
8
8
9
-
The |NCS|'s Zigbee protocol uses the ZBOSS library, a third-party precompiled Zigbee stack.
9
+
The |addon| for the |NCS| uses the ZBOSS library, a third-party precompiled Zigbee stack.
10
10
It includes all mandatory features of the |zigbee_version| specification and provides an Application Programming Interface (API) to access different services.
11
11
The stack comes with the following features:
12
12
13
-
* Complete implementation of the Zigbee core specification and Zigbee Pro feature set.
13
+
* Complete implementation of the Zigbee core specification and Zigbee Pro feature set, revision 21, 22, and 23.
14
14
* Support for all device roles: Coordinator, Router, and End Device.
15
-
* Zigbee Cluster Library, including :ref:`lib_zigbee_fota`.
16
-
* Base Device Behavior.
17
-
* Device definitions for devices that were implemented for Zigbee Home Automation and Light Link profiles.
15
+
* Zigbee Cluster Library.
16
+
* Base Device Behavior version 3.0.1.
17
+
* Zigbee Cluster Library, revision 8.
18
18
* Zigbee Green Power Proxy Basic.
19
-
* Experimental support for ``ZB_ZCL_WWAH``.
20
19
21
20
See `Software maturity levels`_ in the |NCS| documentation for what experimental support means.
22
21
Experimental support also means that the feature is either not certified or no sample is provided for the given feature (or both).
@@ -57,7 +56,7 @@ In each topology, the nodes have the following responsibilities:
57
56
* *Zigbee Router* - Extends the range of the network.
58
57
For this reason, the router has the radio enabled at all times.
59
58
However, in the star topology it is not moving packets through the network.
60
-
* *Zigbee End Device* - Receives messages from the parent device, in this case the coordinator.
59
+
* *Zigbee End Device* - Receives messages from the parent device.
61
60
62
61
In every Zigbee topology, each router and end device that joins the Zigbee network after its creation by the coordinator needs a parent device.
63
62
When a device wants to join the network, it sends a beacon request to scan for available devices.
@@ -67,7 +66,7 @@ Based on different factors of responses, such as signal strength, the new device
67
66
For end devices, the parent device (a coordinator or a router) can store information meant for them.
68
67
This is required because the end devices do not receive packets directly from other devices.
69
68
Each packet meant for an end device needs to go through its parent, and the end devices need to regularly request and respond to packets from the parents.
70
-
For example, in the |NCS|, the Zigbee light switch device requests packets from the parent every three seconds.
69
+
For example, in the |addon| for the |NCS|, the Zigbee light switch device requests packets from the parent every three seconds.
71
70
The end device does not route packets.
72
71
It can also disable its radio to reduce the power consumption between the regular packet requests if the Sleepy End Device behavior is enabled.
73
72
@@ -76,7 +75,7 @@ Additional information
76
75
77
76
If you want to learn more about the Zigbee topics and terminology mentioned in this guide, read the following pages:
78
77
79
-
* :ref:`ug_zigbee_architectures` page to learn more about the Zigbee architecture available in the |NCS|.
78
+
* :ref:`ug_zigbee_architectures` page to learn more about the Zigbee architecture.
80
79
* `Common ZCL terms and definitions`_ section in the ZBOSS user guide.
81
80
* Zigbee topologies in section 1.1.4 of the `Zigbee Specification <CSA Specifications Download Request_>`_.
82
81
* :ref:`zigbee_ug_sed` section on the :ref:`ug_zigbee_configuring` page.
Copy file name to clipboardexpand all lines: docs/adding_clusters.rst
+11-12
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,7 @@ Adding ZCL clusters to application
6
6
##################################
7
7
8
8
.. note::
9
-
The contents of this user guide are inaccurate and will be updated in one of the upcoming releases.
10
-
The information about the update will be posted in the release notes.
11
-
For the time being, do not use this guide.
9
+
.. include:: /includes/experimental_note.txt
12
10
13
11
.. contents::
14
12
:local:
@@ -372,19 +370,20 @@ Complete the following steps to read the cluster list of a Zigbee node:
372
370
Further expanding the custom application
373
371
****************************************
374
372
375
-
You can further expand the application with more features, such as OTA support.
373
+
You can further expand the application with more features.
376
374
377
-
.. _ug_zigee_adding_clusters_ota:
375
+
..
376
+
.. _ug_zigee_adding_clusters_ota:
378
377
379
-
Adding OTA
380
-
==========
378
+
Adding OTA
379
+
==========
381
380
382
-
To extend the sample with OTA support, we would have to complete steps similar to :ref:`adding On/Off Switch and Temperature Sensor functionalities <ug_zigee_adding_clusters_adding_clusters>`.
383
-
Then, we would have to implement the ZCL device callback to control the process of collecting chunks of new firmware.
384
-
This is described more broadly in the following sections.
381
+
To extend the sample with OTA support, we would have to complete steps similar to :ref:`adding On/Off Switch and Temperature Sensor functionalities <ug_zigee_adding_clusters_adding_clusters>`.
382
+
Then, we would have to implement the ZCL device callback to control the process of collecting chunks of new firmware.
383
+
This is described more broadly in the following sections.
385
384
386
-
Fortunately, we can use the :ref:`lib_zigbee_fota` library to handle the majority of these implementation steps.
387
-
To add OTA support to the extended application, follow the steps in :ref:`ug_zigbee_configuring_components_ota`.
385
+
Fortunately, we can use the :ref:`lib_zigbee_fota` library to handle the majority of these implementation steps.
386
+
To add OTA support to the extended application, follow the steps in :ref:`ug_zigbee_configuring_components_ota`.
Copy file name to clipboardexpand all lines: docs/architectures.rst
+21-12
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,22 @@ Architectures
7
7
:local:
8
8
:depth: 2
9
9
10
-
This page describes the platform designs that are possible with the Zigbee stack on Nordic Semiconductor devices.
10
+
.. note::
11
+
.. include:: /includes/experimental_note.txt
12
+
13
+
This page describes the platform designs that are possible with the Zigbee stack on the nRF54L15 development kit.
11
14
12
15
The designs are described from the least to the most complex, that is from simple applications that consist of a single chip running single or multiple protocols to scenarios in which the nRF SoC acts as a network co-processor when the application is running on a much more powerful host processor.
13
16
17
+
.. include:: /includes/coprocessor_note.txt
18
+
14
19
.. _ug_zigbee_platform_design_soc:
15
20
16
21
System-on-Chip designs
17
22
**********************
18
23
19
-
This single-chip solution has the combined RFIC (the IEEE 802.15.4 in case of Zigbee) and processor.
20
-
The Zigbee stack and the application layer run on the local processor.
24
+
The single-chip solution has a combined RFIC (the IEEE 802.15.4 in case of Zigbee) and processor.
25
+
Both the Zigbee stack and the application layer run on the local processor.
21
26
22
27
This design has the following advantages:
23
28
@@ -27,7 +32,7 @@ This design has the following advantages:
27
32
28
33
It also has the following disadvantages:
29
34
30
-
* For some uses, the nRF SoC's MCU can be to slow to handle both the application and the network stack load.
35
+
* For some uses, the nRF SoC's MCU can be too slow to handle both the application and the network stack load.
31
36
* The application and the network stack share flash and RAM space.
32
37
This leaves less resources for the application.
33
38
* Dual-bank DFU or an external flash is needed to update the firmware.
@@ -71,7 +76,7 @@ It also has the following disadvantages:
@@ -90,6 +95,8 @@ This platform design is suitable for the following development kit:
90
95
Co-processor designs
91
96
********************
92
97
98
+
.. include:: /includes/coprocessor_note.txt
99
+
93
100
In co-processor designs, the application runs on one processor (the host processor) and communicates with another processor that provides the radio interface.
94
101
In these designs, the more powerful processor (host) interacts with the Zigbee network through a connectivity device, for example a Nordic Semiconductor's device with the Zigbee interface.
95
102
@@ -123,15 +130,17 @@ It also has the following disadvantages:
123
130
124
131
Split Zigbee architecture
125
132
126
-
The |NCS| includes the :ref:`ug_zigbee_tools_ncp_host` tool.
127
-
|zigbee_ncp_package|
133
+
..
134
+
The |addon| for the |NCS| includes the :ref:`ug_zigbee_tools_ncp_host` tool.
135
+
|zigbee_ncp_package|
128
136
129
-
The tool is available for download as a standalone :file:`zip` package using the following link:
Copy file name to clipboardexpand all lines: docs/commissioning.rst
+12-9
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,14 @@ Commissioning
7
7
:local:
8
8
:depth: 2
9
9
10
+
.. note::
11
+
.. include:: /includes/experimental_note.txt
12
+
10
13
Commissioning is a process that allows a new Zigbee device to join a Zigbee network.
11
14
The device is configured into the network, so that it can start communicating with other network nodes.
12
15
If there is no network to join, the commissioning procedure ensures that a new network is created.
13
16
14
-
You can configure Zigbee commissioning in the |NCS| by setting parameters before the start of the :ref:`zigbee_zboss`.
17
+
You can configure Zigbee commissioning by setting parameters before the start of the :ref:`zigbee_zboss`.
15
18
For more information, see the `Support for Zigbee commissioning`_ section in the ZBOSS stack documentation.
16
19
17
20
.. _zigbee_commissioning_start:
@@ -32,7 +35,7 @@ In the ZBOSS stack, the commissioning can be started using one of the following
32
35
33
36
For more information, see the `Stack commissioning start sequence`_ section in the ZBOSS stack documentation.
34
37
35
-
In the |NCS|, the application can use :ref:`lib_zigbee_signal_handler` to handle the ZBOSS signals and start the commissioning.
38
+
With the |addon|, the application can use :ref:`lib_zigbee_signal_handler` to handle the ZBOSS signals and start the commissioning.
36
39
37
40
.. _zigbee_commissioning_modes:
38
41
@@ -41,7 +44,7 @@ Commissioning modes
41
44
42
45
Zigbee commissioning is organized into four different modes:
43
46
44
-
* Touchlink commissioning (optional; not supported in the |NCS|)
47
+
* Touchlink commissioning (optional; not supported in the |addon| for the |NCS|)
45
48
* Network Steering
46
49
* Network Formation
47
50
* Finding and Binding (optional)
@@ -69,7 +72,7 @@ Touchlink
69
72
=========
70
73
71
74
.. note::
72
-
The Touchlink mode is optional in Zigbee and is not supported in the |NCS|.
75
+
The Touchlink mode is optional in Zigbee and is not supported in the |addon| for the |NCS|.
73
76
74
77
The Touchlink mode allows commissioning of devices in close proximity to each other, which means that the key criterium for this mode is the signal strength.
75
78
It involves an initiator device and a target device, where the initiator is a member of an existing Zigbee network or it can form a new network.
@@ -108,10 +111,10 @@ The new device must be authenticated and authorized to become part of the networ
108
111
For this purpose, it needs credentials, which usually take form of a network key.
109
112
For `Centralized security network`_, the authentication and authorization also involves establishing a unique Trust Center Link Key (TCLK).
110
113
111
-
Network Steering in the |NCS|
114
+
Network Steering in the |addon| for the |NCS|
112
115
In the ZBOSS stack, Network Steering is started using the `ZB_BDB_NETWORK_STEERING`_ bit mask.
113
116
114
-
In the |NCS|, Network Steering for a node on a network can be started using the following additional options:
117
+
In the |addon|, Network Steering for a node on a network can be started using the following additional options:
115
118
116
119
* When running the :ref:`Zigbee Coordinator sample <zigbee_network_coordinator_sample>`, you can press the associated button.
117
120
* If you are using the :ref:`lib_zigbee_shell` library in your application, you can use the ``bdb start`` command.
@@ -139,10 +142,10 @@ Depending on the node role:
139
142
If Network Formation is successful, you can add nodes to the new network using `Network Steering`_.
140
143
If unsuccessful, the commissioning procedure stops here.
141
144
142
-
Network Formation in the |NCS|
145
+
Network Formation in the |addon| for the |NCS|
143
146
In the ZBOSS stack, Network Formation is started using the `ZB_BDB_NETWORK_FORMATION`_ bit mask.
144
147
145
-
In the |NCS|, when using the :ref:`lib_zigbee_signal_handler` and the application implements the Zigbee Coordinator role, the Network Formation procedure is started right after the stack initialization.
148
+
In the |addon|, when using the :ref:`lib_zigbee_signal_handler` and the application implements the Zigbee Coordinator role, the Network Formation procedure is started right after the stack initialization.
146
149
147
150
Centralized security network
148
151
----------------------------
@@ -196,7 +199,7 @@ Depending on the device type:
196
199
197
200
Finding and Binding can be terminated if there are no corresponding clusters on the target node.
198
201
199
-
Finding and Binding in the |NCS|
202
+
Finding and Binding in the |addon| for the |NCS|
200
203
In the ZBOSS stack, Finding and Binding is started using the `ZB_BDB_FINDING_N_BINDING`_ bit mask.
201
204
202
205
Apart from the BDB top-level procedure API, you can use the `zb_bdb_finding_binding_initiator()`_ function to manually control which binding table entries are to be created.
0 commit comments