Skip to content

Commit 4a9c072

Browse files
committed
doc: implemented latest review
Implementing as much as I was able to. Signed-off-by: Wille Backman <wille.backman@nordicsemi.no>
1 parent b341310 commit 4a9c072

Some content is hidden

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

41 files changed

+558
-432
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ In each topology, the nodes have the following responsibilities:
5656
* *Zigbee Router* - Extends the range of the network.
5757
For this reason, the router has the radio enabled at all times.
5858
However, in the star topology it is not moving packets through the network.
59-
* *Zigbee End Device* - Receives messages from the parent device, in this case the coordinator.
59+
* *Zigbee End Device* - Receives messages from the parent device.
6060

6161
In every Zigbee topology, each router and end device that joins the Zigbee network after its creation by the coordinator needs a parent device.
6262
When a device wants to join the network, it sends a beacon request to scan for available devices.
@@ -66,7 +66,7 @@ Based on different factors of responses, such as signal strength, the new device
6666
For end devices, the parent device (a coordinator or a router) can store information meant for them.
6767
This is required because the end devices do not receive packets directly from other devices.
6868
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.
69-
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.
7070
The end device does not route packets.
7171
It can also disable its radio to reduce the power consumption between the regular packet requests if the Sleepy End Device behavior is enabled.
7272

@@ -75,7 +75,7 @@ Additional information
7575

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

78-
* :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.
7979
* `Common ZCL terms and definitions`_ section in the ZBOSS user guide.
8080
* Zigbee topologies in section 1.1.4 of the `Zigbee Specification <CSA Specifications Download Request_>`_.
8181
* :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

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Architectures
77
:local:
88
:depth: 2
99

10+
.. note::
11+
.. include:: /includes/experimental_note.txt
12+
1013
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.
@@ -73,7 +76,7 @@ It also has the following disadvantages:
7376
.. figure:: images/zigbee_platform_design_multi.svg
7477
:alt: Multiprotocol Zigbee and Bluetooth LE architecture (nRF54L Series devices)
7578

76-
Multiprotocol Zigbee and Bluetooth LE architecture on nRF52 Series devices
79+
Multiprotocol Zigbee and Bluetooth LE architecture on nRF54L Series devices
7780

7881
..
7982
.. figure:: images/zigbee_platform_design_nRF5340_multi.svg

docs/commissioning.rst

+9-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ 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.
@@ -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

@@ -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/configuring.rst

+43-38
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ Configuring |addon|
77
:local:
88
:depth: 2
99

10+
.. note::
11+
.. include:: /includes/experimental_note.txt
12+
1013
This page describes what is needed to start working with Zigbee using the |addon| for the |NCS|.
14+
|kconfig_search|
1115

1216
.. _zigbee_ug_libs:
1317

@@ -17,7 +21,7 @@ Required libraries and drivers
1721
Zigbee requires the following modules:
1822

1923
* :ref:`zigbee_zboss`, with the :ref:`lib_zigbee_osif` subsystem acting as the linking layer between the ZBOSS stack and the |NCS|.
20-
The ZBOSS library is enabled by the :option:`CONFIG_ZIGBEE` Kconfig option.
24+
The ZBOSS library is enabled by the ``CONFIG_ZIGBEE_R23`` Kconfig option.
2125
For more information about the ZBOSS stack, see also the `external ZBOSS development guide and API documentation`_.
2226
* `IEEE 802.15.4`_ radio driver - This library is automatically enabled when working with Zigbee on Nordic Semiconductor's development kits.
2327

@@ -26,14 +30,14 @@ Zigbee requires the following modules:
2630
Mandatory configuration
2731
***********************
2832

29-
To use the Zigbee protocol, set the :option:`CONFIG_ZIGBEE` Kconfig option.
33+
To use the Zigbee protocol, set the ``CONFIG_ZIGBEE_R23`` Kconfig option.
3034
Setting this option enables all the peripherals required for the correct operation of the Zigbee protocol and allows you to use them.
3135

3236
After that, you have to define the Zigbee device role for the Zigbee application or sample by setting one of the following Kconfig options:
3337

34-
* Router role: :option:`CONFIG_ZIGBEE_ROLE_ROUTER`
35-
* End Device role: :option:`CONFIG_ZIGBEE_ROLE_END_DEVICE`
36-
* Coordinator role: :option:`CONFIG_ZIGBEE_ROLE_COORDINATOR`
38+
* Router role: ``CONFIG_ZIGBEE_ROLE_ROUTER``
39+
* End Device role: ``CONFIG_ZIGBEE_ROLE_END_DEVICE``
40+
* Coordinator role: ``CONFIG_ZIGBEE_ROLE_COORDINATOR``
3741

3842
Setting any of these options enables the respective ZBOSS role library.
3943
This is needed because End Devices use different libraries than Routers and Coordinators.
@@ -66,11 +70,10 @@ Power saving during sleep
6670
-------------------------
6771

6872
With the sleepy behavior enabled, the unused part of RAM memory is powered off, which allows to lower the power consumption even more.
69-
The sleep current of MCU can be lowered to about 1.8 µA by completing the following steps:
73+
The sleep current of MCU can be lowered by completing the following steps:
7074

71-
1. Turn off UART by setting the :option:`CONFIG_SERIAL` Kconfig option to ``n``.
72-
#. For current measurements for the `nRF54L15 DK <Developing with nRF54L Series_>`_ (PCA10156), set **SW6** to ``nRF ONLY`` position to get the desired results.
73-
#. Enable the :option:`CONFIG_RAM_POWER_DOWN_LIBRARY` Kconfig option.
75+
1. Turn off UART by setting the ``CONFIG_SERIAL`` Kconfig option to ``n``.
76+
#. Enable the ``CONFIG_RAM_POWER_DOWN_LIBRARY`` Kconfig option.
7477

7578
Optional configuration
7679
**********************
@@ -82,11 +85,11 @@ Device operational channel
8285

8386
You can enable one of the following alternative options to select the channel on which the Zigbee device can operate:
8487

85-
* :option:`CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_SINGLE` - Single mode is enabled by default.
88+
* ``CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_SINGLE`` - Single mode is enabled by default.
8689
The default channel is set to 16.
87-
To set a different channel, edit the :option:`CONFIG_ZIGBEE_CHANNEL` option to the desired value.
88-
* :option:`CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_MULTI` - In this mode, you get all the channels enabled by default.
89-
To configure a custom set of channels in the range from 11 to 26, edit the :option:`CONFIG_ZIGBEE_CHANNEL_MASK` option.
90+
To set a different channel, edit the ``CONFIG_ZIGBEE_CHANNEL`` Kconfig option to the desired value.
91+
* ``CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_MULTI`` - In this mode, you get all the channels enabled by default.
92+
To configure a custom set of channels in the range from 11 to 26, edit the ``CONFIG_ZIGBEE_CHANNEL_MASK`` Kconfig option.
9093
For example, you can set channels 13, 16, and 21.
9194
You must have at least one channel enabled with this option.
9295

@@ -100,7 +103,7 @@ By default, it uses an address from Nordic Semiconductor's pool.
100103

101104
If your devices should use a different address, you can change the address according to your company's addressing scheme.
102105

103-
.. include:: includes/ieee802154_eui64_conf.txt
106+
.. include:: includes/ieee802154_eui64_conf_nrf54l.txt
104107

105108
At the end of the configuration process, you can check the EUI-64 value using :ref:`lib_zigbee_shell`:
106109

@@ -123,17 +126,17 @@ The ZBOSS stack can be started using one of the following options:
123126
* Started and executed from the main thread, as `described in the ZBOSS development guide <Stack commissioning start sequence_>`_.
124127
* Started from a dedicated Zephyr thread, which in turn can be created and started by calling :c:func:`zigbee_enable`.
125128

126-
The dedicated thread can be configured using the following options:
129+
The dedicated thread can be configured using the following Kconfig options:
127130

128-
* :option:`CONFIG_ZBOSS_DEFAULT_THREAD_PRIORITY` - Defines thread priority; set to 3 by default.
129-
* :option:`CONFIG_ZBOSS_DEFAULT_THREAD_STACK_SIZE` - Defines the size of the thread stack; set to 2048 by default.
131+
* ``CONFIG_ZBOSS_DEFAULT_THREAD_PRIORITY`` - Defines thread priority; set to ``3`` by default.
132+
* ``CONFIG_ZBOSS_DEFAULT_THREAD_STACK_SIZE`` - Defines the size of the thread stack; set to ``2048`` by default.
130133

131134
.. _zigbee_ug_logging:
132135

133136
Custom logging per module
134137
=========================
135138

136-
Logging is handled with the :option:`CONFIG_LOG` option.
139+
Logging is handled with the ``CONFIG_LOG`` Kconfig option.
137140
This option enables logging for both the stack and Zephyr's `Logging`_ API.
138141

139142
.. _zigbee_ug_logging_application_logs:
@@ -150,21 +153,22 @@ Stack logs
150153
----------
151154

152155
The stack logs are independent from Zephyr's `Logging`_ API.
153-
To customize them, use the following options:
156+
To customize them, use the following Kconfig options:
154157

155-
* :option:`CONFIG_ZBOSS_ERROR_PRINT_TO_LOG` - Allows the application to log ZBOSS error names; enabled by default.
156-
* :option:`CONFIG_ZBOSS_TRACE_MASK` - Sets the modules from which ZBOSS will log the debug messages with :option:`CONFIG_ZBOSS_TRACE_LOG_LEVEL`; no module is set by default.
157-
* :option:`CONFIG_ZBOSS_TRAF_DUMP` - Enables logging of the received 802.15.4 frames over ZBOSS trace log if :option:`CONFIG_ZBOSS_TRACE_LOG_LEVEL` is set; disabled by default.
158+
* ``CONFIG_ZBOSS_ERROR_PRINT_TO_LOG`` - Allows the application to log ZBOSS error names; enabled by default.
159+
* ``CONFIG_ZBOSS_TRACE_MASK`` - Sets the modules from which ZBOSS will log the debug messages with ``CONFIG_ZBOSS_TRACE_LOG_LEVEL``; no module is set by default.
160+
* ``CONFIG_ZBOSS_TRAF_DUMP`` - Enables logging of the received 802.15.4 frames over ZBOSS trace log if ``CONFIG_ZBOSS_TRACE_LOG_LEVEL`` is set; disabled by default.
158161

159-
The stack logs are provided in a binary format and you can configure how they are printed:
162+
The stack logs are provided in a binary format.
163+
You can configure how they are printed with the following Kconfig options:
160164

161-
* :option:`CONFIG_ZBOSS_TRACE_HEXDUMP_LOGGING` - Stack logs are printed as hexdump using Zephyr's `Logging`_ API.
165+
* ``CONFIG_ZBOSS_TRACE_HEXDUMP_LOGGING`` - Stack logs are printed as hexdump using Zephyr's `Logging`_ API.
162166
This option is enabled by default.
163-
* :option:`CONFIG_ZBOSS_TRACE_BINARY_LOGGING` - Stack logs are printed in the binary format using one of the following independent serial backends of your choice:
167+
* ``CONFIG_ZBOSS_TRACE_BINARY_LOGGING`` - Stack logs are printed in the binary format using one of the following independent serial backends of your choice:
164168

165-
* :option:`CONFIG_ZBOSS_TRACE_UART_LOGGING` - UART serial.
169+
* ``CONFIG_ZBOSS_TRACE_UART_LOGGING`` - UART serial.
166170
This backend is enabled by default.
167-
* :option:`CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING` - USB CDC serial.
171+
* ``CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING`` - USB CDC serial.
168172

169173
To specify the serial device, you need to set the ``ncs,zboss-trace-uart`` choice in devicetree like this:
170174

@@ -175,18 +179,19 @@ The stack logs are provided in a binary format and you can configure how they ar
175179
};
176180
177181
.. note::
178-
When you select :option:`CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING`, the USB peripheral is enabled and the USB CDC serial is configured as a part of the :c:func:`zb_osif_serial_logger_init` function.
182+
When you select the ``CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING`` Kconfig option, the USB peripheral is enabled and the USB CDC serial is configured as a part of the :c:func:`zb_osif_serial_logger_init` function.
179183
The application does not wait for the connection to be established and unreceived data is lost.
180184
For this reason, start collecting the data as soon as you need to.
181185

182186
See `CDC ACM`_ in the Zephyr documentation for more information about how to configure USB CDC ACM instance for logging ZBOSS trace messages.
183187

184-
* :option:`CONFIG_ZBOSS_TRACE_BINARY_NCP_TRANSPORT_LOGGING` - Stack logs are printed in the binary format using the NCP transport channel.
188+
* ``CONFIG_ZBOSS_TRACE_BINARY_NCP_TRANSPORT_LOGGING`` - Stack logs are printed in the binary format using the NCP transport channel.
185189

186190
Stack logs are stored in the internal buffer if they are printed using Zephyr's `Logging`_ API or the independent serial backend.
187-
You can customize the buffer size with the :option:`CONFIG_ZBOSS_TRACE_LOGGER_BUFFER_SIZE`.
191+
You can customize the buffer size with the ``CONFIG_ZBOSS_TRACE_LOGGER_BUFFER_SIZE`` Kconfig option.
188192
The buffer size must be larger than ``256`` and smaller than ``2147483648``.
189-
If NCP transport channel is used, stack logs are stored in the buffer used for NCP transport, which size can be configured with :option:`CONFIG_ZIGBEE_UART_TX_BUF_LEN`.
193+
If NCP transport channel is used, stack logs are stored in the buffer used for NCP transport.
194+
This buffer's size can be configured with the ``CONFIG_ZIGBEE_UART_TX_BUF_LEN`` Kconfig option.
190195

191196
.. _zigbee_ug_logging_logger_options:
192197

@@ -196,12 +201,12 @@ Zephyr's logger options
196201
You can configure custom logger options for each Zigbee and ZBOSS module.
197202
To do this, configure the related Kconfig option for one or more modules:
198203

199-
* :option:`CONFIG_ZBOSS_TRACE_LOG_LEVEL`
200-
* :option:`CONFIG_ZBOSS_OSIF_LOG_LEVEL`
201-
* :option:`CONFIG_ZIGBEE_SHELL_LOG_LEVEL`
202-
* :option:`CONFIG_ZIGBEE_APP_UTILS_LOG_LEVEL_CHOICE`
203-
* :option:`CONFIG_ZIGBEE_LOGGER_EP_LOG_LEVEL_CHOICE`
204-
* :option:`CONFIG_ZIGBEE_SCENES_LOG_LEVEL`
204+
* ``CONFIG_ZBOSS_TRACE_LOG_LEVEL``
205+
* ``CONFIG_ZBOSS_OSIF_LOG_LEVEL``
206+
* ``CONFIG_ZIGBEE_SHELL_LOG_LEVEL``
207+
* ``CONFIG_ZIGBEE_APP_UTILS_LOG_LEVEL_CHOICE``
208+
* ``CONFIG_ZIGBEE_LOGGER_EP_LOG_LEVEL_CHOICE``
209+
* ``CONFIG_ZIGBEE_SCENES_LOG_LEVEL``
205210

206211
For each of the modules, you can set the following logging options:
207212

@@ -211,7 +216,7 @@ For each of the modules, you can set the following logging options:
211216
* ``LOG_LEVEL_INF`` - Enables logging for informational messages, errors, and warnings.
212217
* ``LOG_LEVEL_DBG`` - Enables logging for debug messages, informational messages, errors, and warnings.
213218

214-
For example, setting :option:`CONFIG_ZBOSS_TRACE_LOG_LEVEL_INF` will enable logging of informational messages, errors, and warnings for the ZBOSS Trace module.
219+
For example, setting ``CONFIG_ZBOSS_TRACE_LOG_LEVEL_INF`` will enable logging of informational messages, errors, and warnings for the ZBOSS Trace module.
215220

216221
Reduced power consumption
217222
=========================

0 commit comments

Comments
 (0)