Skip to content

Commit d35e494

Browse files
committed
doc: feedback edits
Applying the feedback that was provided. Signed-off-by: Wille Backman <wille.backman@nordicsemi.no>
1 parent 2055e24 commit d35e494

Some content is hidden

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

44 files changed

+668
-623
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ __pycache__/
1212
/twister-out*
1313

1414
# docs
15-
/doc/_build*
1615
/docs/_build*

docs/about.rst

+8-9
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@ About Zigbee protocol
66
.. note::
77
.. include:: /includes/experimental_note.txt
88

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.
1010
It includes all mandatory features of the |zigbee_version| specification and provides an Application Programming Interface (API) to access different services.
1111
The stack comes with the following features:
1212

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.
1414
* 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.
1818
* Zigbee Green Power Proxy Basic.
19-
* Experimental support for ``ZB_ZCL_WWAH``.
2019

2120
See `Software maturity levels`_ in the |NCS| documentation for what experimental support means.
2221
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:
5756
* *Zigbee Router* - Extends the range of the network.
5857
For this reason, the router has the radio enabled at all times.
5958
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.
6160

6261
In every Zigbee topology, each router and end device that joins the Zigbee network after its creation by the coordinator needs a parent device.
6362
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
6766
For end devices, the parent device (a coordinator or a router) can store information meant for them.
6867
This is required because the end devices do not receive packets directly from other devices.
6968
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.
7170
The end device does not route packets.
7271
It can also disable its radio to reduce the power consumption between the regular packet requests if the Sleepy End Device behavior is enabled.
7372

@@ -76,7 +75,7 @@ Additional information
7675

7776
If you want to learn more about the Zigbee topics and terminology mentioned in this guide, read the following pages:
7877

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.
8079
* `Common ZCL terms and definitions`_ section in the ZBOSS user guide.
8180
* Zigbee topologies in section 1.1.4 of the `Zigbee Specification <CSA Specifications Download Request_>`_.
8281
* :ref:`zigbee_ug_sed` section on the :ref:`ug_zigbee_configuring` page.

docs/adding_clusters.rst

+11-12
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ Adding ZCL clusters to application
66
##################################
77

88
.. 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
1210

1311
.. contents::
1412
:local:
@@ -372,19 +370,20 @@ Complete the following steps to read the cluster list of a Zigbee node:
372370
Further expanding the custom application
373371
****************************************
374372

375-
You can further expand the application with more features, such as OTA support.
373+
You can further expand the application with more features.
376374

377-
.. _ug_zigee_adding_clusters_ota:
375+
..
376+
.. _ug_zigee_adding_clusters_ota:
378377
379-
Adding OTA
380-
==========
378+
Adding OTA
379+
==========
381380

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.
385384

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`.
388387

389388

390389
.. _ug_zigee_adding_clusters_passing_events:

docs/architectures.rst

+21-12
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,22 @@ Architectures
77
:local:
88
:depth: 2
99

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.
1114

1215
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.
1316

17+
.. include:: /includes/coprocessor_note.txt
18+
1419
.. _ug_zigbee_platform_design_soc:
1520

1621
System-on-Chip designs
1722
**********************
1823

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.
2126

2227
This design has the following advantages:
2328

@@ -27,7 +32,7 @@ This design has the following advantages:
2732

2833
It also has the following disadvantages:
2934

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.
3136
* The application and the network stack share flash and RAM space.
3237
This leaves less resources for the application.
3338
* Dual-bank DFU or an external flash is needed to update the firmware.
@@ -71,7 +76,7 @@ It also has the following disadvantages:
7176
.. figure:: images/zigbee_platform_design_multi.svg
7277
:alt: Multiprotocol Zigbee and Bluetooth LE architecture (nRF54L Series devices)
7378

74-
Multiprotocol Zigbee and Bluetooth LE architecture on nRF52 Series devices
79+
Multiprotocol Zigbee and Bluetooth LE architecture on nRF54L Series devices
7580

7681
..
7782
.. figure:: images/zigbee_platform_design_nRF5340_multi.svg
@@ -90,6 +95,8 @@ This platform design is suitable for the following development kit:
9095
Co-processor designs
9196
********************
9297

98+
.. include:: /includes/coprocessor_note.txt
99+
93100
In co-processor designs, the application runs on one processor (the host processor) and communicates with another processor that provides the radio interface.
94101
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.
95102

@@ -123,15 +130,17 @@ It also has the following disadvantages:
123130

124131
Split Zigbee architecture
125132

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|
128136
129-
The tool is available for download as a standalone :file:`zip` package using the following link:
130137

131-
* `ZBOSS NCP Host`_ (|zigbee_ncp_package_version|)
138+
The tool is available for download as a standalone :file:`zip` package using the following link:
132139

133-
|zigbee_ncp_package_more_info|
140+
* `ZBOSS NCP Host`_ (|zigbee_ncp_package_version|)
134141

135-
This platform design is suitable for the following development kits:
142+
|zigbee_ncp_package_more_info|
143+
144+
This platform design is suitable for the following development kits:
136145

137-
.. include:: /includes/device_table_ncp.txt
146+
.. include:: /includes/device_table_ncp.txt

docs/commissioning.rst

+12-9
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ Commissioning
77
:local:
88
:depth: 2
99

10+
.. note::
11+
.. include:: /includes/experimental_note.txt
12+
1013
Commissioning is a process that allows a new Zigbee device to join a Zigbee network.
1114
The device is configured into the network, so that it can start communicating with other network nodes.
1215
If there is no network to join, the commissioning procedure ensures that a new network is created.
1316

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`.
1518
For more information, see the `Support for Zigbee commissioning`_ section in the ZBOSS stack documentation.
1619

1720
.. _zigbee_commissioning_start:
@@ -32,7 +35,7 @@ In the ZBOSS stack, the commissioning can be started using one of the following
3235

3336
For more information, see the `Stack commissioning start sequence`_ section in the ZBOSS stack documentation.
3437

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.
3639

3740
.. _zigbee_commissioning_modes:
3841

@@ -41,7 +44,7 @@ Commissioning modes
4144

4245
Zigbee commissioning is organized into four different modes:
4346

44-
* Touchlink commissioning (optional; not supported in the |NCS|)
47+
* Touchlink commissioning (optional; not supported in the |addon| for the |NCS|)
4548
* Network Steering
4649
* Network Formation
4750
* Finding and Binding (optional)
@@ -69,7 +72,7 @@ Touchlink
6972
=========
7073

7174
.. 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|.
7376

7477
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.
7578
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
108111
For this purpose, it needs credentials, which usually take form of a network key.
109112
For `Centralized security network`_, the authentication and authorization also involves establishing a unique Trust Center Link Key (TCLK).
110113

111-
Network Steering in the |NCS|
114+
Network Steering in the |addon| for the |NCS|
112115
In the ZBOSS stack, Network Steering is started using the `ZB_BDB_NETWORK_STEERING`_ bit mask.
113116

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:
115118

116119
* When running the :ref:`Zigbee Coordinator sample <zigbee_network_coordinator_sample>`, you can press the associated button.
117120
* 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:
139142
If Network Formation is successful, you can add nodes to the new network using `Network Steering`_.
140143
If unsuccessful, the commissioning procedure stops here.
141144

142-
Network Formation in the |NCS|
145+
Network Formation in the |addon| for the |NCS|
143146
In the ZBOSS stack, Network Formation is started using the `ZB_BDB_NETWORK_FORMATION`_ bit mask.
144147

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.
146149

147150
Centralized security network
148151
----------------------------
@@ -196,7 +199,7 @@ Depending on the device type:
196199

197200
Finding and Binding can be terminated if there are no corresponding clusters on the target node.
198201

199-
Finding and Binding in the |NCS|
202+
Finding and Binding in the |addon| for the |NCS|
200203
In the ZBOSS stack, Finding and Binding is started using the `ZB_BDB_FINDING_N_BINDING`_ bit mask.
201204

202205
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.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# -- Project information -----------------------------------------------------
1010
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1111

12-
project = 'nRF Connect SDK - Zigbee R23 add-on'
12+
project = 'Zigbee R23 add-on for nRF Connect SDK'
1313
copyright = '2024, Nordic Semiconductor'
1414
author = 'Nordic Semiconductor'
1515
release = '1.0.0'

0 commit comments

Comments
 (0)