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: softdevice_controller/CHANGELOG.rst
+21
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,33 @@ Changelog
9
9
10
10
All the notable changes to this project are documented on this page.
11
11
12
+
Main branch
13
+
***********
14
+
15
+
Changes
16
+
=======
17
+
18
+
* The CIS or BIS sink now generate lost SDUs immediately when scheduling conflicts occur instead of after receiving the next valid SDU. (DRGN-24062)
19
+
12
20
nRF Connect SDK v2.9.0
13
21
**********************
14
22
15
23
Added
16
24
=====
17
25
18
26
* Production support for scanning and initiating at the same time. (DRGN-23824)
27
+
* :ref:`Experimental <nrf:software_maturity>` support for Channel Sounding step mode-3.
28
+
* :ref:`Experimental <nrf:software_maturity>` support for Channel Sounding multiple antenna elements.
29
+
* :ref:`Experimental <nrf:software_maturity>` support for the following Channel Sounding HCI commands:
30
+
31
+
* LE CS Write Cached Remote Supported Capabilities
32
+
* LE CS Write Cached Remote FAE Table
33
+
* LE CS Remove Config
34
+
35
+
Changes
36
+
=======
37
+
38
+
* The vendor-specific Set Connection Event Trigger HCI command has been removed. (DRGN-23981)
19
39
20
40
Bug fixes
21
41
=========
@@ -25,6 +45,7 @@ Bug fixes
25
45
The issue would only happen when the scanner received a long extended advertising packet that did not fit into a single advertising report and the scanning was stopped explicitly or through a timeout. (DRGN-23966)
26
46
* Fixed an issue where the CIS TX Power was set according to the LE Power Control state of the previous CIS in a CIG. (DRGN-21721)
27
47
* Fixed an issue where the BIS receiver running with FEM could enable the radio at the wrong time, causing the receiver to drop packets and lose sync. (DRGN-23891)
48
+
* Fixed an issue where the controller would raise Number Of Completed Packets events for a disconnected CIS. (DRGN-23869)
Copy file name to clipboardexpand all lines: softdevice_controller/doc/channel_sounding.rst
+103-12
Original file line number
Diff line number
Diff line change
@@ -11,37 +11,128 @@ LE Channel Sounding (CS) is a feature defined in the `Bluetooth Core Specificati
11
11
CS allows two devices in a connection to perform measurements of their communication channel, both the round trip time (RTT), and the phase and magnitude (as in-phase and quadrature (IQ) values) can be measured.
12
12
The RTT and IQ values can then be sent to an application to calculate the distance between devices.
13
13
14
+
Support status
15
+
**************
16
+
14
17
Channel Sounding currently has :ref:`Experimental <nrf:software_maturity>` support in the |controller| for the nRF54L15 SoC.
15
18
CS can be enabled by building with the :kconfig:option:`CONFIG_BT_CTLR_CHANNEL_SOUNDING` Kconfig option enabled.
16
19
17
-
Developing with CS
18
-
******************
19
-
20
-
Currently, the :zephyr:code-sample:`bluetooth_hci_uart` sample is recommended to get started with Channel Sounding.
21
-
Build the sample with the following command to enable the CS feature:
20
+
Command support
21
+
---------------
22
22
23
-
.. code-block:: console
24
-
25
-
west build -b nrf54l15dk/nrf54l15/cpuapp --pristine -- -DCONFIG_BT_CTLR_CHANNEL_SOUNDING=y
26
-
27
-
You can use the sample to run the following supported HCI commands over UART:
23
+
The following LE CS commands are supported:
28
24
29
25
* LE CS Read Local Supported Capabilities
30
26
* LE CS Read Remote Supported Capabilities
27
+
* LE CS Write Cached Remote Supported Capabilities
31
28
* LE CS Security Enable
32
29
* LE CS Set Default Settings
33
30
* LE CS Read Remote FAE Table
31
+
* LE CS Write Cached Remote FAE Table
34
32
* LE CS Create Config
33
+
* LE CS Remove Config
35
34
* LE CS Set Channel Classification
36
35
* LE CS Set Procedure Parameters
37
36
* LE CS Procedure Enable
38
37
* LE CS Test
39
38
* LE CS Test End
40
39
41
-
Experimental Limitations
42
-
************************
40
+
Supported capabilities
41
+
----------------------
42
+
43
+
The |controller| currently has the following supported capabilities:
44
+
45
+
* One CS Configuration per ACL connection.
46
+
* Indefinite Procedure Repeats.
47
+
* Four Antennas and Four Antenna Paths.
48
+
* CS Reflector and CS Initiator Roles.
49
+
* Step modes 1, 2, and 3.
50
+
* 150 ns time-of-flight precision
51
+
* RTT with AA-only and 32, 64, 96, and 128 bits random payloads
52
+
* 1M and 2M CS Sync Phy
53
+
* No Transmitter Frequency Actuation Error
54
+
55
+
The supported timing values for the |controller| are as follows:
56
+
57
+
* A T_IP1 of 60 µs or greater.
58
+
* A T_IP2 of 30 µs or greater.
59
+
* A T_FCS of 60 µs or greater.
60
+
* A T_PM of 10 µs or greater.
61
+
* A T_SW of 10 µs.
62
+
63
+
Multiple antennas support
64
+
-------------------------
65
+
66
+
Currently, the |controller| supports multiple antennas with a fixed pinout for the multi-antenna switch.
67
+
In order to use the |controller| with multiple antennas, an external GPIO controlled multi-antenna switch needs to be set up with the following truth table:
68
+
69
+
.. list-table:: Antenna control for multi-antenna switching.
70
+
:widths: 30 5 5 5 5
71
+
:header-rows: 1
72
+
73
+
* - Active Antenna:
74
+
- **P1.11**
75
+
- **P1.12**
76
+
- **P1.13**
77
+
- **P1.14**
78
+
* - Antenna 1
79
+
- 1
80
+
- 0
81
+
- 0
82
+
- 0
83
+
* - Antenna 2
84
+
- 0
85
+
- 1
86
+
- 0
87
+
- 0
88
+
* - Antenna 3
89
+
- 0
90
+
- 0
91
+
- 1
92
+
- 0
93
+
* - Antenna 4
94
+
- 0
95
+
- 0
96
+
- 0
97
+
- 1
98
+
99
+
.. note::
100
+
Currently, the |controller| needs a maximum of 4 µs to trigger an antenna switch within the T_SW period.
101
+
This means that any multi-antenna switch with the correct pinout must switch within 6 µs to maintain 10 µs T_SW.
102
+
103
+
Experimental limitations
104
+
------------------------
43
105
44
106
Currently, the following limitations apply to the :ref:`Experimental <nrf:software_maturity>` support of Channel Sounding:
45
107
46
108
* :ref:`radio coexistence <nrf:ug_radio_coex>` and :ref:`front-end modules <mpsl_fem>` are not supported.
47
109
* Only one subevent per event is supported in CS.
110
+
111
+
Developing with CS
112
+
******************
113
+
114
+
The following samples are recommended for getting started with Channel Sounding:
115
+
116
+
1. Using the Ranging Service samples:
117
+
118
+
* :ref:`Bluetooth: Channel Sounding Initiator with Ranging Requestor <nrf:channel_sounding_ras_initiator>`.
119
+
* :ref:`Bluetooth: Channel Sounding Reflector with Ranging Responder <nrf:channel_sounding_ras_reflector>`.
120
+
121
+
2. Using the :zephyr:code-sample:`bluetooth_hci_uart` sample and running HCI commands over UART.
122
+
123
+
.. note::
124
+
To build the :zephyr:code-sample:`bluetooth_hci_uart` sample with Channel Sounding enabled, set :kconfig:option:`CONFIG_BT_CTLR_CHANNEL_SOUNDING` to ``y``.
125
+
126
+
.. code-block:: console
127
+
128
+
west build -b nrf54l15dk/nrf54l15/cpuapp --pristine -- -DCONFIG_BT_CTLR_CHANNEL_SOUNDING=y
129
+
130
+
Optional CS Kconfigs
131
+
--------------------
132
+
133
+
Use the following Kconfig options to enable the desired optional CS features:
134
+
135
+
* Set :kconfig:option:`BT_CTLR_SDC_CS_STEP_MODE3` to ``y`` to enable Channel Sounding step mode-3 support.
136
+
137
+
* Set :kconfig:option:`BT_CTLR_SDC_CS_MAX_ANTENNA_PATHS` to a value between ``2`` and ``4`` to enable Channel Sounding multiple antenna paths support.
138
+
* Set :kconfig:option:`BT_CTLR_SDC_CS_NUM_ANTENNAS` to a value between ``2`` and :kconfig:option:`BT_CTLR_SDC_CS_MAX_ANTENNA_PATHS` to enable Channel Sounding multiple antennas support.
0 commit comments