Skip to content

Commit 41c282b

Browse files
PavelVPVrugeGerritsen
authored andcommitted
softdevice_controller: rev f4f268ce33699c0889e295520777b00a93aab5a3
CHANGELOG.rst contains the list of changes. Signed-off-by: Pavel Vasilyev <[email protected]>
1 parent 3f6bbc6 commit 41c282b

34 files changed

+50
-43
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,18 @@ Changes
2525
=======
2626

2727
* The CIS or BIS sink now generate lost SDUs immediately when scheduling conflicts occur instead of after receiving the next valid SDU. (DRGN-24062)
28+
* Removed support for running the SoftDevice Controller on the nRF54L15 DK v0.8.1 and earlier. (DRGN-21403)
2829

2930
Bug fixes
3031
=========
3132

3233
* 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)
34+
* Fixed a rare issue where the scanner would assert when scanning and initiating at the same time. (DRGN-24198)
35+
The issue would only happen if all the conditions are met:
36+
37+
* :kconfig:option:`BT_CTLR_SDC_ALLOW_PARALLEL_SCANNING_AND_INITIATING` is set to the non-default value 2.
38+
* The initiator has received a connectable ``ADV_EXT_IND``.
39+
* The initiator is canceled.
3340

3441
nRF Connect SDK v2.9.0
3542
**********************

softdevice_controller/include/sdc.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ extern "C" {
221221
#define SDC_MEM_QOS_CHANNEL_SURVEY (40)
222222

223223
/** Memory required for the scanner when only supporting legacy scanning. */
224-
#define SDC_MEM_SCAN(buffer_count) (353 + (buffer_count) * 98)
224+
#define SDC_MEM_SCAN(buffer_count) (353 + (buffer_count) * 104)
225225

226226
/** Memory required for the scanner when supporting extended scanning. */
227227
#define SDC_MEM_SCAN_EXT(buffer_count) (353 + (buffer_count) * 320)
@@ -309,10 +309,10 @@ extern "C" {
309309
#define SDC_MEM_PER_CIS(count) ((count) > 0 ? (13 + (count) * 556) : 0)
310310

311311
/** @brief Maximum memory required per BIG. */
312-
#define SDC_MEM_PER_BIG(count) ((count) > 0 ? (13 + (count) * 284) : 0)
312+
#define SDC_MEM_PER_BIG(count) ((count) > 0 ? (13 + (count) * 291) : 0)
313313

314314
/** @brief Maximum memory required per BIS. Buffer and BIG memory comes in addition. */
315-
#define SDC_MEM_PER_BIS(count) ((count) > 0 ? (13 + (count) * 268) : 0)
315+
#define SDC_MEM_PER_BIS(count) ((count) > 0 ? (13 + (count) * 267) : 0)
316316

317317
/** @brief Maximum memory required for the ISO RX PDU pool per stream.
318318
* @param[in] rx_pdu_buffer_per_stream_count Number of RX PDU buffers allocated for each BIS or CIS stream. Minimum of 1.
@@ -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) * 8904) : 0)
348+
#define SDC_MEM_CS(count) ((count) > 0 ? (13 + (count) * 8924) : 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: 769666e2a185d5cbaf89bd9cbfe17911b4d9d447
3-
ll_subversion_number: '0x1073'
2+
git_revision: f4f268ce33699c0889e295520777b00a93aab5a3
3+
ll_subversion_number: '0x1085'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-20T13:21:09Z'
5+
timestamp: '2025-01-07T16:49:25Z'
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: 769666e2a185d5cbaf89bd9cbfe17911b4d9d447
3-
ll_subversion_number: '0x1073'
2+
git_revision: f4f268ce33699c0889e295520777b00a93aab5a3
3+
ll_subversion_number: '0x1085'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-20T13:21:09Z'
5+
timestamp: '2025-01-07T16:49:25Z'

0 commit comments

Comments
 (0)