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: doc/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: doc/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:
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.
@@ -68,9 +72,9 @@ Power saving during sleep
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
73
The sleep current of MCU can be lowered to about 1.8 µA by completing the following steps:
70
74
71
-
1. Turn off UART by setting the :option:`CONFIG_SERIAL` Kconfig option to ``n``.
75
+
1. Turn off UART by setting the ``CONFIG_SERIAL`` Kconfig option to ``n``.
72
76
#. 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.
77
+
#. Enable the ``CONFIG_RAM_POWER_DOWN_LIBRARY`` Kconfig option.
74
78
75
79
Optional configuration
76
80
**********************
@@ -82,11 +86,11 @@ Device operational channel
82
86
83
87
You can enable one of the following alternative options to select the channel on which the Zigbee device can operate:
84
88
85
-
* :option:`CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_SINGLE` - Single mode is enabled by default.
89
+
* ``CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_SINGLE`` - Single mode is enabled by default.
86
90
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.
91
+
To set a different channel, edit the ``CONFIG_ZIGBEE_CHANNEL`` Kconfig option to the desired value.
92
+
* ``CONFIG_ZIGBEE_CHANNEL_SELECTION_MODE_MULTI`` - In this mode, you get all the channels enabled by default.
93
+
To configure a custom set of channels in the range from 11 to 26, edit the ``CONFIG_ZIGBEE_CHANNEL_MASK`` Kconfig option.
90
94
For example, you can set channels 13, 16, and 21.
91
95
You must have at least one channel enabled with this option.
92
96
@@ -100,7 +104,7 @@ By default, it uses an address from Nordic Semiconductor's pool.
100
104
101
105
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
110
@@ -123,17 +127,17 @@ The ZBOSS stack can be started using one of the following options:
123
127
* Started and executed from the main thread, as `described in the ZBOSS development guide <Stack commissioning start sequence_>`_.
124
128
* Started from a dedicated Zephyr thread, which in turn can be created and started by calling :c:func:`zigbee_enable`.
125
129
126
-
The dedicated thread can be configured using the following options:
130
+
The dedicated thread can be configured using the following Kconfig options:
127
131
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.
132
+
* ``CONFIG_ZBOSS_DEFAULT_THREAD_PRIORITY`` - Defines thread priority; set to ``3`` by default.
133
+
* ``CONFIG_ZBOSS_DEFAULT_THREAD_STACK_SIZE`` - Defines the size of the thread stack; set to ``2048`` by default.
130
134
131
135
.. _zigbee_ug_logging:
132
136
133
137
Custom logging per module
134
138
=========================
135
139
136
-
Logging is handled with the :option:`CONFIG_LOG` option.
140
+
Logging is handled with the ``CONFIG_LOG`` Kconfig option.
137
141
This option enables logging for both the stack and Zephyr's `Logging`_ API.
138
142
139
143
.. _zigbee_ug_logging_application_logs:
@@ -150,21 +154,22 @@ Stack logs
150
154
----------
151
155
152
156
The stack logs are independent from Zephyr's `Logging`_ API.
153
-
To customize them, use the following options:
157
+
To customize them, use the following Kconfig options:
154
158
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.
159
+
* ``CONFIG_ZBOSS_ERROR_PRINT_TO_LOG`` - Allows the application to log ZBOSS error names; enabled by default.
160
+
* ``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.
161
+
* ``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
162
159
-
The stack logs are provided in a binary format and you can configure how they are printed:
163
+
The stack logs are provided in a binary format.
164
+
You can configure how they are printed with the following Kconfig options:
160
165
161
-
* :option:`CONFIG_ZBOSS_TRACE_HEXDUMP_LOGGING` - Stack logs are printed as hexdump using Zephyr's `Logging`_ API.
166
+
* ``CONFIG_ZBOSS_TRACE_HEXDUMP_LOGGING`` - Stack logs are printed as hexdump using Zephyr's `Logging`_ API.
162
167
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:
168
+
* ``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.
172
+
* ``CONFIG_ZBOSS_TRACE_USB_CDC_LOGGING`` - USB CDC serial.
168
173
169
174
To specify the serial device, you need to set the ``ncs,zboss-trace-uart`` choice in devicetree like this:
170
175
@@ -175,18 +180,19 @@ The stack logs are provided in a binary format and you can configure how they ar
175
180
};
176
181
177
182
.. 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.
183
+
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
184
The application does not wait for the connection to be established and unreceived data is lost.
180
185
For this reason, start collecting the data as soon as you need to.
181
186
182
187
See `CDC ACM`_ in the Zephyr documentation for more information about how to configure USB CDC ACM instance for logging ZBOSS trace messages.
183
188
184
-
* :option:`CONFIG_ZBOSS_TRACE_BINARY_NCP_TRANSPORT_LOGGING` - Stack logs are printed in the binary format using the NCP transport channel.
189
+
* ``CONFIG_ZBOSS_TRACE_BINARY_NCP_TRANSPORT_LOGGING`` - Stack logs are printed in the binary format using the NCP transport channel.
185
190
186
191
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`.
192
+
You can customize the buffer size with the ``CONFIG_ZBOSS_TRACE_LOGGER_BUFFER_SIZE`` Kconfig option.
188
193
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`.
194
+
If NCP transport channel is used, stack logs are stored in the buffer used for NCP transport.
195
+
This buffer's size can be configured with the ``CONFIG_ZIGBEE_UART_TX_BUF_LEN`` Kconfig option.
190
196
191
197
.. _zigbee_ug_logging_logger_options:
192
198
@@ -196,12 +202,12 @@ Zephyr's logger options
196
202
You can configure custom logger options for each Zigbee and ZBOSS module.
197
203
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
213
@@ -211,7 +217,7 @@ For each of the modules, you can set the following logging options:
211
217
* ``LOG_LEVEL_INF`` - Enables logging for informational messages, errors, and warnings.
212
218
* ``LOG_LEVEL_DBG`` - Enables logging for debug messages, informational messages, errors, and warnings.
213
219
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.
220
+
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