Skip to content

Commit 00db652

Browse files
committed
softdevice_controller: rev b3a17531e9415c6c1cb892b97fd0663925b35bbc
CHANGELOG.rst contains the list of changes. Signed-off-by: Vinayak Chettimada <[email protected]>
1 parent b9d3a31 commit 00db652

29 files changed

+74
-31
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,38 @@ All the notable changes to this project are documented on this page.
1212
nRF Connect SDK v2.6.4-DRGN-25465-branch
1313
****************************************
1414

15-
All the notable changes included in the |NCS| v2.6.4-DRGN-25465 release are documented in this section.
15+
Added
16+
=====
17+
18+
* Central-only and Peripheral-only library variants for the nRF54L Series devices. (DRGN-25081)
19+
* Initial prototype support for the nRF54LM20 device (DRGN-24919).
20+
21+
Bug fixes
22+
=========
23+
24+
* Fixed an issue where the controller would assert when terminating a connection created from PAwR. (DRGN-25200)
25+
The issue would occur if the :kconfig:option:`CONFIG_BT_CTLR_CHANNEL_SOUNDING` Kconfig option was enabled.
26+
27+
Changes
28+
=======
29+
30+
* When controller to host flow control is enabled, the controller no longer waits until all ACL data packets have been acknowledged by the host before raising the Disconnection Complete event.
31+
The controller no longer validates the handles provided in the Host Number of Complete Packets command.
32+
That is, the handles provided may belong to a Disconnection Complete event which has not yet been processed by the host.
33+
This reverts the changes done by DRGN-21085. (DRGN-24882)
34+
35+
nRF Connect SDK v3.0.0
36+
**********************
37+
38+
Added
39+
=====
40+
41+
* Support generating the HCI LE CIS Established v2 event. (DRGN-24112)
42+
* Support for the Advertising Coding Selection feature as an advertiser or scanner. (DRGN-23744)
43+
44+
* For an advertiser, this adds support for the LE Set Extended Advertising Parameters [v2] HCI command.
45+
* For a scanner, the advertising reports will contain the coding scheme for packets received over LE Coded PHY when the host feature bit is enabled.
46+
* Support for multiple packet pairs in an ACL event when using LLPM mode. (DRGN-16157)
1647

1748
Changes
1849
=======

softdevice_controller/include/sdc.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,17 @@ int32_t sdc_support_central(void);
816816
*/
817817
int32_t sdc_support_ext_central(void);
818818

819+
/** @brief Support LE Power Class 1
820+
*
821+
* After this API is called, the controller will include LE Power Class 1 in the supported features.
822+
*
823+
* @note The controller only adds this feature bit, the user will have to know whether this is required.
824+
*
825+
* @retval 0 Success
826+
* @retval -NRF_EPERM This API must be called before @ref sdc_cfg_set() or @ref sdc_enable().
827+
*/
828+
int32_t sdc_support_le_power_class_1(void);
829+
819830
/** @brief Support Data Length Extensions for a central device
820831
*
821832
* After this API is called, the controller will support data length extension in the central role.

softdevice_controller/include/sdc_hci.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ extern "C" {
7272

7373
typedef enum
7474
{
75+
SDC_HCI_MSG_TYPE_NONE = 0x00,
7576
SDC_HCI_MSG_TYPE_DATA = 0x02,
7677
SDC_HCI_MSG_TYPE_EVT = 0x04,
7778
SDC_HCI_MSG_TYPE_ISO = 0x08,
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: e5d86ebfadebfb093bd99d5594813b1a6ff95f1c
3-
ll_subversion_number: '0x2364'
2+
git_revision: b3a17531e9415c6c1cb892b97fd0663925b35bbc
3+
ll_subversion_number: '0x23DD'
44
ll_version_number: '0x0D'
5-
timestamp: '2025-06-17T14:13:15Z'
5+
timestamp: '2025-10-16T10:42:01Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: e5d86ebfadebfb093bd99d5594813b1a6ff95f1c
3-
ll_subversion_number: '0x1364'
2+
git_revision: b3a17531e9415c6c1cb892b97fd0663925b35bbc
3+
ll_subversion_number: '0x13DD'
44
ll_version_number: '0x0D'
5-
timestamp: '2025-06-17T14:12:17Z'
5+
timestamp: '2025-10-16T10:40:59Z'
Binary file not shown.

0 commit comments

Comments
 (0)