Skip to content

Commit 9f5da70

Browse files
jostnrugeGerritsen
authored andcommitted
softdevice_controller: rev 769666e2a185d5cbaf89bd9cbfe17911b4d9d447
CHANGELOG.rst contains the list of changes. Signed-off-by: Johan Stridkvist <[email protected]>
1 parent 146dce1 commit 9f5da70

34 files changed

+54
-40
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,25 @@ All the notable changes to this project are documented on this page.
1212
Main branch
1313
***********
1414

15+
Added
16+
=====
17+
18+
* Support generating the HCI LE CIS Established v2 event. (DRGN-24112)
19+
* Support for the Advertising Coding Selection feature as an advertiser or scanner. (DRGN-23744)
20+
21+
* For an advertiser, this adds support for the LE Set Extended Advertising Parameters [v2] HCI command.
22+
* 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.
23+
1524
Changes
1625
=======
1726

1827
* The CIS or BIS sink now generate lost SDUs immediately when scheduling conflicts occur instead of after receiving the next valid SDU. (DRGN-24062)
1928

29+
Bug fixes
30+
=========
31+
32+
* Fixed an issue where ACL connections could not be created if a Periodic Advertiser was configured when the :kconfig:option:`CONFIG_BT_CTLR_SDC_PAWR_ADV` Kconfig option was selected. (DRGN-24148)
33+
2034
nRF Connect SDK v2.9.0
2135
**********************
2236

softdevice_controller/include/sdc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ extern "C" {
345345
*
346346
* @param[in] count Maximum number of concurrent connections supporting CS procedure.
347347
*/
348-
#define SDC_MEM_CS(count) ((count) > 0 ? (13 + (count) * 8883) : 0)
348+
#define SDC_MEM_CS(count) ((count) > 0 ? (13 + (count) * 8904) : 0)
349349

350350
/** @brief Maximum additional memory required to support Channel Sounding setup phase procedures
351351
*
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: 11f5e5d895cf2408403e58341e8c07f0baa5b4ef
3-
ll_subversion_number: '0x1071'
2+
git_revision: 769666e2a185d5cbaf89bd9cbfe17911b4d9d447
3+
ll_subversion_number: '0x1073'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-18T09:35:32Z'
5+
timestamp: '2024-12-20T13:21:09Z'
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: 11f5e5d895cf2408403e58341e8c07f0baa5b4ef
3-
ll_subversion_number: '0x1071'
2+
git_revision: 769666e2a185d5cbaf89bd9cbfe17911b4d9d447
3+
ll_subversion_number: '0x1073'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-18T09:35:32Z'
5+
timestamp: '2024-12-20T13:21:09Z'

0 commit comments

Comments
 (0)