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
+3-3
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ In each topology, the nodes have the following responsibilities:
56
56
* *Zigbee Router* - Extends the range of the network.
57
57
For this reason, the router has the radio enabled at all times.
58
58
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, meaning the coordinator.
60
60
61
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.
62
62
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
66
66
For end devices, the parent device (a coordinator or a router) can store information meant for them.
67
67
This is required because the end devices do not receive packets directly from other devices.
68
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.
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.
70
70
The end device does not route packets.
71
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.
72
72
@@ -75,7 +75,7 @@ Additional information
75
75
76
76
If you want to learn more about the Zigbee topics and terminology mentioned in this guide, read the following pages:
77
77
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.
79
79
* `Common ZCL terms and definitions`_ section in the ZBOSS user guide.
80
80
* Zigbee topologies in section 1.1.4 of the `Zigbee Specification <CSA Specifications Download Request_>`_.
81
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
+4-1
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,9 @@ Architectures
7
7
:local:
8
8
:depth: 2
9
9
10
+
.. note::
11
+
.. include:: /includes/experimental_note.txt
12
+
10
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.
@@ -73,7 +76,7 @@ It also has the following disadvantages:
Copy file name to clipboardexpand all lines: docs/commissioning.rst
+9-6
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,9 @@ 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.
@@ -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
@@ -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.
Setting any of these options enables the respective ZBOSS role library.
39
43
This is needed because End Devices use different libraries than Routers and Coordinators.
@@ -66,11 +70,10 @@ Power saving during sleep
66
70
-------------------------
67
71
68
72
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:
70
74
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.
74
77
75
78
Optional configuration
76
79
**********************
@@ -82,11 +85,11 @@ Device operational channel
82
85
83
86
You can enable one of the following alternative options to select the channel on which the Zigbee device can operate:
84
87
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.
86
89
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.
90
93
For example, you can set channels 13, 16, and 21.
91
94
You must have at least one channel enabled with this option.
92
95
@@ -100,7 +103,7 @@ By default, it uses an address from Nordic Semiconductor's pool.
100
103
101
104
If your devices should use a different address, you can change the address according to your company's addressing scheme.
At the end of the configuration process, you can check the EUI-64 value using :ref:`lib_zigbee_shell`:
106
109
@@ -123,17 +126,17 @@ The ZBOSS stack can be started using one of the following options:
123
126
* Started and executed from the main thread, as `described in the ZBOSS development guide <Stack commissioning start sequence_>`_.
124
127
* Started from a dedicated Zephyr thread, which in turn can be created and started by calling :c:func:`zigbee_enable`.
125
128
126
-
The dedicated thread can be configured using the following options:
129
+
The dedicated thread can be configured using the following Kconfig options:
127
130
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.
130
133
131
134
.. _zigbee_ug_logging:
132
135
133
136
Custom logging per module
134
137
=========================
135
138
136
-
Logging is handled with the :option:`CONFIG_LOG` option.
139
+
Logging is handled with the ``CONFIG_LOG`` Kconfig option.
137
140
This option enables logging for both the stack and Zephyr's `Logging`_ API.
138
141
139
142
.. _zigbee_ug_logging_application_logs:
@@ -150,21 +153,22 @@ Stack logs
150
153
----------
151
154
152
155
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:
154
157
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.
158
161
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:
160
164
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.
162
166
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:
* :option:`CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING` - USB CDC serial.
171
+
* ``CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING`` - USB CDC serial.
168
172
169
173
To specify the serial device, you need to set the ``ncs,zboss-trace-uart`` choice in devicetree like this:
170
174
@@ -175,18 +179,19 @@ The stack logs are provided in a binary format and you can configure how they ar
175
179
};
176
180
177
181
.. 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.
179
183
The application does not wait for the connection to be established and unreceived data is lost.
180
184
For this reason, start collecting the data as soon as you need to.
181
185
182
186
See `CDC ACM`_ in the Zephyr documentation for more information about how to configure USB CDC ACM instance for logging ZBOSS trace messages.
183
187
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.
185
189
186
190
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.
188
192
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.
190
195
191
196
.. _zigbee_ug_logging_logger_options:
192
197
@@ -196,12 +201,12 @@ Zephyr's logger options
196
201
You can configure custom logger options for each Zigbee and ZBOSS module.
197
202
To do this, configure the related Kconfig option for one or more modules:
For each of the modules, you can set the following logging options:
207
212
@@ -211,7 +216,7 @@ For each of the modules, you can set the following logging options:
211
216
* ``LOG_LEVEL_INF`` - Enables logging for informational messages, errors, and warnings.
212
217
* ``LOG_LEVEL_DBG`` - Enables logging for debug messages, informational messages, errors, and warnings.
213
218
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.
0 commit comments