Skip to content

Commit 92d0783

Browse files
yuxCairugeGerritsen
authored andcommitted
softdevice_controller: rev 11f5e5d895cf2408403e58341e8c07f0baa5b4ef
CHANGELOG.rst contains the list of changes. Signed-off-by: Yuxuan Cai <yuxuan.cai@nordicsemi.no>
1 parent d68a0b5 commit 92d0783

37 files changed

+508
-149
lines changed

softdevice_controller/CHANGELOG.rst

+21
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,33 @@ Changelog
99

1010
All the notable changes to this project are documented on this page.
1111

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+
1220
nRF Connect SDK v2.9.0
1321
**********************
1422

1523
Added
1624
=====
1725

1826
* 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)
1939

2040
Bug fixes
2141
=========
@@ -25,6 +45,7 @@ Bug fixes
2545
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)
2646
* 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)
2747
* 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)
2849

2950
nRF Connect SDK v2.8.0
3051
**********************

softdevice_controller/doc/channel_sounding.rst

+103-12
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,128 @@ LE Channel Sounding (CS) is a feature defined in the `Bluetooth Core Specificati
1111
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.
1212
The RTT and IQ values can then be sent to an application to calculate the distance between devices.
1313

14+
Support status
15+
**************
16+
1417
Channel Sounding currently has :ref:`Experimental <nrf:software_maturity>` support in the |controller| for the nRF54L15 SoC.
1518
CS can be enabled by building with the :kconfig:option:`CONFIG_BT_CTLR_CHANNEL_SOUNDING` Kconfig option enabled.
1619

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+
---------------
2222

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:
2824

2925
* LE CS Read Local Supported Capabilities
3026
* LE CS Read Remote Supported Capabilities
27+
* LE CS Write Cached Remote Supported Capabilities
3128
* LE CS Security Enable
3229
* LE CS Set Default Settings
3330
* LE CS Read Remote FAE Table
31+
* LE CS Write Cached Remote FAE Table
3432
* LE CS Create Config
33+
* LE CS Remove Config
3534
* LE CS Set Channel Classification
3635
* LE CS Set Procedure Parameters
3736
* LE CS Procedure Enable
3837
* LE CS Test
3938
* LE CS Test End
4039

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+
------------------------
43105

44106
Currently, the following limitations apply to the :ref:`Experimental <nrf:software_maturity>` support of Channel Sounding:
45107

46108
* :ref:`radio coexistence <nrf:ug_radio_coex>` and :ref:`front-end modules <mpsl_fem>` are not supported.
47109
* 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.

softdevice_controller/include/sdc.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ extern "C" {
160160
*/
161161

162162
/** @brief Auxiliary defines, not to be used outside of this file. */
163-
#define __MEM_MINIMAL_CENTRAL_LINK_SIZE 811
164-
#define __MEM_MINIMAL_PERIPHERAL_LINK_SIZE 915
163+
#define __MEM_MINIMAL_CENTRAL_LINK_SIZE 795
164+
#define __MEM_MINIMAL_PERIPHERAL_LINK_SIZE 891
165165
#define __MEM_TX_BUFFER_OVERHEAD_SIZE 14
166166
#define __MEM_RX_BUFFER_OVERHEAD_SIZE 14
167167

@@ -194,7 +194,7 @@ extern "C" {
194194
__MEM_ADDITIONAL_LINK_SIZE(tx_size, rx_size, tx_count, rx_count))
195195

196196
/** Maximum shared memory required for central links. */
197-
#define SDC_MEM_CENTRAL_LINKS_SHARED 17
197+
#define SDC_MEM_CENTRAL_LINKS_SHARED 21
198198

199199
/** Maximum shared memory required for peripheral links. */
200200
#define SDC_MEM_PERIPHERAL_LINKS_SHARED 17
@@ -209,7 +209,7 @@ extern "C" {
209209
*
210210
* @param[in] num_links Total number of peripheral and central links supported.
211211
*/
212-
#define SDC_MEM_SUBRATING(num_links) (11 + (num_links) * 19)
212+
#define SDC_MEM_SUBRATING(num_links) ((num_links) > 0 ? (12 + (num_links) * 20) : 0)
213213

214214
/** @brief Maximum memory required when supporting periodic advertising sync transfer.
215215
*
@@ -285,7 +285,6 @@ extern "C" {
285285
#define __MEM_MINIMAL_PERIODIC_ADV_RSP_SET_SIZE_WITHOUT_RX (166)
286286
#define __MEM_FOR_PERIODIC_ADV_RSP_FAILURE_REPORTING (224)
287287
#define __MEM_PER_ISO_PDU_POOL(count) ((count) > 0 ? (16 + (count) * 288) : 0)
288-
#define __MEM_PER_ISO_TX_HCI_BUFFER(count) ((count) > 0 ? (12 + (count) * 300) : 0)
289288

290289
/** Memory required per periodic advertising with responses set.
291290
*
@@ -307,7 +306,7 @@ extern "C" {
307306
#define SDC_MEM_PER_CIG(count) ((count) > 0 ? (13 + (count) * 123) : 0)
308307

309308
/** @brief Maximum memory required per CIS. Buffer and CIG memory comes in addition. */
310-
#define SDC_MEM_PER_CIS(count) ((count) > 0 ? (13 + (count) * 548) : 0)
309+
#define SDC_MEM_PER_CIS(count) ((count) > 0 ? (13 + (count) * 556) : 0)
311310

312311
/** @brief Maximum memory required per BIG. */
313312
#define SDC_MEM_PER_BIG(count) ((count) > 0 ? (13 + (count) * 284) : 0)
@@ -352,7 +351,7 @@ extern "C" {
352351
*
353352
* @param[in] count Total number of links (central + peripheral).
354353
*/
355-
#define SDC_MEM_CS_SETUP_PHASE_LINKS(count) ((count) > 0 ? (11 + (count)*339) : 0)
354+
#define SDC_MEM_CS_SETUP_PHASE_LINKS(count) ((count) > 0 ? (11 + (count) * 359) : 0)
356355

357356
/** @} end of sdc_mem_defines */
358357

@@ -561,6 +560,7 @@ typedef struct
561560
bool step_mode3_supported;
562561
} sdc_cfg_cs_cfg_t;
563562

563+
564564
/** @brief SoftDevice Controller configuration. */
565565
typedef union
566566
{

0 commit comments

Comments
 (0)