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: mpsl/doc/cx.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Short-Range Protocols External Radio Coexistence
8
8
:depth: 2
9
9
10
10
The radio coexistence feature allows the application to interface with several types of packet traffic arbiters (PTAs).
11
-
PTAs arbitrate the requested radio operations between all radios to avoid interference, providing better radio performance to devices using multiple interfering radios simultaneously, like a combination of IEEE 802.15.4, Bluetooth® Low Energy (LE), and Wi-Fi.
11
+
PTAs arbitrate the requested radio operations between all radios to avoid interference, providing better radio performance to devices using multiple interfering radios simultaneously, like a combination of IEEE 802.15.4, Bluetooth® Low Energy (LE), and Wi-Fi®.
12
12
The arbitration algorithm used can vary between PTAs.
13
13
14
14
.. note::
@@ -17,7 +17,7 @@ The arbitration algorithm used can vary between PTAs.
17
17
Overview
18
18
********
19
19
20
-
The radio coexistence feature allows short-range protocol drivers (e.g. IEEE 802.15.4, Bluetooth LE) to communicate with the packet traffic arbiter (PTA) using :ref:`MPSL CX API <mpsl_api_sr_cx>`.
20
+
The radio coexistence feature allows short-range protocol drivers (for example, IEEE 802.15.4, Bluetooth LE) to communicate with the packet traffic arbiter (PTA) using :ref:`MPSL CX API <mpsl_api_sr_cx>`.
21
21
The MPSL CX API is hardware-agnostic and separates the implementation of the protocol driver from an implementation specific to given PTA.
22
22
To perform any radio operation, the protocol drivers must first request the appropriate access to the medium from the PTA.
23
23
The request informs the PTA implementation about which radio operations it wants to perform at that moment or shortly after, and what is the priority of the operation.
@@ -36,7 +36,7 @@ Selecting CX Implementation
36
36
37
37
The :ref:`mpsl` itself does not provide any implementation of the CX interface.
38
38
For details on the implementations present in the |NCS|, see :ref:`nrf:ug_radio_coex`.
39
-
An application that needs to use CX must call :c:func:`mpsl_cx_interface_set()` during the system initialization.
39
+
An application that needs to use CX must call :c:func:`mpsl_cx_interface_set` during the system initialization.
40
40
The initialization of any resource needed by the selected CX implementation is not in scope of :ref:`mpsl` and must also be done during the system initialization.
Copy file name to clipboardExpand all lines: nfc/CHANGELOG.rst
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,15 @@ nRF Connect SDK v2.6.0
23
23
Added
24
24
=====
25
25
26
-
* Added functions :c:func:`nfc_platform_buffer_alloc()` and :c:func:`nfc_platform_buffer_free()` for the platform layer.
26
+
* Added functions :c:func:`nfc_platform_buffer_alloc` and :c:func:`nfc_platform_buffer_free` for the platform layer.
27
27
The NFCT buffer for data exchange is now outside the library implementation.
28
28
You have to define these two functions and return a memory that is accessible by the EasyDMA utility.
29
29
* A possibility to modify the maximum value for the Frame Wait time Integer by using the ``NFC_T4T_PARAM_FWI_MAX`` parameter.
30
30
31
31
Modified
32
32
========
33
33
34
-
* The :c:func:`nfc_platform_setup()` function now provides a pointer to the interrupt priority of the NFCT peripheral.
34
+
* The :c:func:`nfc_platform_setup` function now provides a pointer to the interrupt priority of the NFCT peripheral.
35
35
Its value must be set to the requested one.
36
36
In implementations where the operating system is responsible for setting the interrupt priority, this value is not relevant.
37
37
@@ -41,14 +41,14 @@ nRF Connect SDK v2.3.0
41
41
Added
42
42
=====
43
43
44
-
* A callback requested by the :c:func:`nfc_platform_cb_request()` function to allow execution of platform-dependent code before executing the user callback.
44
+
* A callback requested by the :c:func:`nfc_platform_cb_request` function to allow execution of platform-dependent code before executing the user callback.
45
45
* A header file :file:`nfc_platform.h` for platform layer.
46
46
47
47
Modified
48
48
========
49
49
50
-
* The :c:func:`nfc_platform_setup()` function now provides a pointer to the callback resolution function that is used to execute the user-defined NFC callback.
51
-
* The :c:func:`nfc_t2t_setup()` function was updated to allow coexistence of the Type 2 Tag and the Type 4 Tag libraries.
50
+
* The :c:func:`nfc_platform_setup` function now provides a pointer to the callback resolution function that is used to execute the user-defined NFC callback.
51
+
* The :c:func:`nfc_t2t_setup` function was updated to allow coexistence of the Type 2 Tag and the Type 4 Tag libraries.
52
52
53
53
nRF Connect SDK v2.1.0
54
54
**********************
@@ -64,7 +64,7 @@ nRF Connect SDK v2.0.0
64
64
Bug fixes
65
65
=========
66
66
67
-
* Fixed the Type 2 Tag initialization, where the return value of the :c:func:`nfc_platform_nfcid1_default_bytes_get()` function was not converted to the local NFC error code resulting in incorrect NFCID1 values.
67
+
* Fixed the Type 2 Tag initialization, where the return value of the :c:func:`nfc_platform_nfcid1_default_bytes_get` function was not converted to the local NFC error code resulting in incorrect NFCID1 values.
68
68
69
69
nRF Connect SDK v1.9.0
70
70
**********************
@@ -103,7 +103,7 @@ Modified
103
103
104
104
* Debug info is removed from the NFC T2T and T4T libraries.
105
105
* Fixed duplicated initial Frame Waiting Time (FWT) value setting.
106
-
* Modified the :c:func:`nfc_t2t_done()` and the :c:func:`nfc_t4t_done()` functions to uninitialize the NFCT driver to achieve symmetry in the library behaviour since the :c:func:`nfc_txt_setup()` function initializes the NFCT driver.
106
+
* Modified the :c:func:`nfc_t2t_done` and the :c:func:`nfc_t4t_done` functions to uninitialize the NFCT driver to achieve symmetry in the library behaviour since the :c:func:`nfc_txt_setup` function initializes the NFCT driver.
Copy file name to clipboardExpand all lines: nrf_802154/doc/CHANGELOG.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -283,7 +283,7 @@ Notable Changes
283
283
* The release notes of the legacy versions of the Radio Driver are available in the Changelog for 802.15.4 Radio Driver v1.10.0.
284
284
* The changelog of the previous versions of the 802.15.4 SL library is now located at the bottom of this page.
285
285
* The Radio Driver documentation will now also include the Service Layer documentation.
286
-
* Future versions of the Radio Driver and the Service Layer will follow NCS version tags.
286
+
* Future versions of the Radio Driver and the Service Layer will follow |NCS| version tags.
287
287
* The 802.15.4 Radio Driver API has been modified to support more than a single delayed reception window simultaneously.
288
288
The :c:func:`nrf_802154_receive_at`, :c:func:`nrf_802154_receive_at_cancel`, and :c:func:`nrf_802154_receive_failed` functions take an additional parameter that identifies a given reception window unambiguously.
Copy file name to clipboardExpand all lines: nrf_modem/doc/CHANGELOG.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ nrf_modem
15
15
Sockets
16
16
=======
17
17
18
-
* Updated the :c:func:`nrf_send()` and :c:func:`nrf_sendto()` functions to correctly set ``errno`` when the socket is closed during a send operation with :c:macro:`NRF_MSG_WAITACK`.
18
+
* Updated the :c:func:`nrf_send` and :c:func:`nrf_sendto` functions to correctly set ``errno`` when the socket is closed during a send operation with :c:macro:`NRF_MSG_WAITACK`.
19
19
20
20
DECT NR+
21
21
========
@@ -337,7 +337,7 @@ Bootloader
337
337
nrf_modem 2.2.1
338
338
***************
339
339
340
-
* Added the ``MODEM_DFU_RESULT_VOLTAGE_LOW`` result to :c:func:`nrf_modem_init()` function.
340
+
* Added the ``MODEM_DFU_RESULT_VOLTAGE_LOW`` result to :c:func:`nrf_modem_init` function.
341
341
The new value is returned when the voltage is too low for the modem firmware to execute the scheduled modem firmware update.
342
342
The application can retry the operation by re-initializing the modem when the voltage has increased.
343
343
Requires modem firmware v1.3.4 or newer.
@@ -346,11 +346,11 @@ nrf_modem 2.2.1
346
346
nrf_modem 2.2.0
347
347
***************
348
348
349
-
* Added a ``timeout`` parameter to the :c:func:`nrf_modem_trace_get()` function.
349
+
* Added a ``timeout`` parameter to the :c:func:`nrf_modem_trace_get` function.
350
350
* Fixed an issue when compiling the :file:`nrf_modem.h` header in C++.
351
351
* The Delta DFU interface (:file:`nrf_modem_delta_dfu.h`) is now thread safe.
352
-
* Fixed possible race conditions in the :c:func:`nrf_modem_init()` and :c:func:`nrf_modem_shutdown()` functions.
353
-
* Fixed a bug in :c:func:`nrf_listen()` function that let the queue of incoming connection requests be of size one.
352
+
* Fixed possible race conditions in the :c:func:`nrf_modem_init` and :c:func:`nrf_modem_shutdown` functions.
353
+
* Fixed a bug in :c:func:`nrf_listen` function that let the queue of incoming connection requests be of size one.
354
354
* The :c:data:`NRF_MODEM_GNSS_EVT_BLOCKED` event is now sent only when the GNSS stack does not get any runtime due to LTE activity, whereas earlier it could also be sent when the GNSS stack average runtime was too short.
355
355
* Removed the usage of the application software interrupt. The library uses only the IPC peripheral interrupt now.
356
356
* Removed the :c:func:`nrf_modem_application_irq_handler` function.
Copy file name to clipboardExpand all lines: nrf_rpc/CHANGELOG.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Changes
16
16
=======
17
17
18
18
* Enabled zcbor's :c:member:`stop_on_error` flag before decoding the CBOR payload of an nRF RPC packet.
19
-
When this flag is set, zcbor stops decoding subsequent data items in the case of decoding failure unless the error is explicitly cleared with the :c:func:`zcbor_pop_error()` function.
19
+
When this flag is set, zcbor stops decoding subsequent data items in the case of decoding failure unless the error is explicitly cleared with the :c:func:`zcbor_pop_error` function.
0 commit comments