Skip to content

Commit 1fa060e

Browse files
committed
softdevice_controller: rev 8585012583c0bec7c764b3ae247c0f343c8c1fec
CHANGELOG.rst contains the list of changes. Signed-off-by: Vinayak Chettimada <[email protected]>
1 parent 05fa9f0 commit 1fa060e

29 files changed

+54
-38
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,23 @@ Changelog
99

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

12-
nRF Connect SDK v2.6.4-DRGN-25465-branch
13-
****************************************
12+
nRF Connect SDK v2.6-branch-NCSIDB-1718
13+
***************************************
1414

15-
All the notable changes included in the |NCS| v2.6.4-DRGN-25465 release are documented in this section.
15+
All the notable changes included in the |NCS| v2.6-branch-NCSIDB-1718 release are documented in this section.
1616

1717
Changes
1818
=======
1919

20-
* Enabled the LE Power Class 1 feature support bit in the controller.
21-
* The ability to configure a periodic advertiser with subevents but without response slots has been removed.
22-
This is due to an errata to the Bluetooth Core Specification v5.4 no longer allowing this configuration. (DRGN-22189)
23-
* The LE Channel Selection Algorithm event is no longer raised when a connection was established as a peripheral using legacy advertising commands. (DRGN-24660)
24-
This behavior was changed to accommodate ES-27170.
20+
* 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.
21+
The controller no longer validates the handles provided in the Host Number of Complete Packets command.
22+
That is, the handles provided may belong to a Disconnection Complete event which has not yet been processed by the host.
23+
This reverts the changes done by DRGN-21085. (DRGN-24882)
24+
25+
nRF Connect SDK v2.6.4-DRGN-25465-branch
26+
****************************************
27+
28+
All the notable changes included in the |NCS| v2.6.4-DRGN-25465 release are documented in this section.
2529

2630
nRF Connect SDK v2.6.4
2731
**********************

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: 8585012583c0bec7c764b3ae247c0f343c8c1fec
3+
ll_subversion_number: '0x23E3'
44
ll_version_number: '0x0D'
5-
timestamp: '2025-06-17T14:13:15Z'
5+
timestamp: '2025-10-22T17:06:18Z'
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: 8585012583c0bec7c764b3ae247c0f343c8c1fec
3+
ll_subversion_number: '0x13E3'
44
ll_version_number: '0x0D'
5-
timestamp: '2025-06-17T14:12:17Z'
5+
timestamp: '2025-10-22T17:05:04Z'
Binary file not shown.

0 commit comments

Comments
 (0)