Skip to content

Commit 8415721

Browse files
Tschet1rugeGerritsen
authored andcommitted
softdevice_controller: rev 93c4537c2712c49dfcfb766faa19da5c77bed391
CHANGELOG.rst contains the list of changes. Signed-off-by: Jan Müller <[email protected]>
1 parent e23d70e commit 8415721

34 files changed

+42
-41
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Bug fixes
2424
* Fixed a rare issue where the scanner may give a single advertising report with corrupted data when restarting scanning.
2525
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)
2626
* 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)
27+
* 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)
2728

2829
nRF Connect SDK v2.8.0
2930
**********************

softdevice_controller/include/sdc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,13 +337,13 @@ extern "C" {
337337
*
338338
* @param[in] count Maximum number of concurrent connections supporting CS procedure.
339339
*/
340-
#define SDC_MEM_CS(count) ((count) > 0 ? (13 + (count) * 8912) : 0)
340+
#define SDC_MEM_CS(count) ((count) > 0 ? (13 + (count) * 8883) : 0)
341341

342342
/** @brief Maximum additional memory required to support Channel Sounding setup phase procedures
343343
*
344344
* @param[in] count Total number of links (central + peripheral).
345345
*/
346-
#define SDC_MEM_CS_SETUP_PHASE_LINKS(count) ((count) > 0 ? (11 + (count)*326) : 0)
346+
#define SDC_MEM_CS_SETUP_PHASE_LINKS(count) ((count) > 0 ? (11 + (count)*339) : 0)
347347

348348
/** @} end of sdc_mem_defines */
349349

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: b1a7158c9eb71ed9f0d49cf6b071d6c13cbd3933
3-
ll_subversion_number: '0x1061'
2+
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
3+
ll_subversion_number: '0x1063'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-02T13:02:51Z'
5+
timestamp: '2024-12-04T07:52:35Z'
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: b1a7158c9eb71ed9f0d49cf6b071d6c13cbd3933
3-
ll_subversion_number: '0x1061'
2+
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
3+
ll_subversion_number: '0x1063'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-12-02T13:02:51Z'
5+
timestamp: '2024-12-04T07:52:35Z'

0 commit comments

Comments
 (0)