Skip to content

Commit

Permalink
softdevice_controller: rev cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
Browse files Browse the repository at this point in the history
CHANGELOG.rst contains the list of changes.

Signed-off-by: Herman Berget <[email protected]>
  • Loading branch information
hermabe committed Apr 30, 2024
1 parent 4ff6615 commit 804da6e
Show file tree
Hide file tree
Showing 28 changed files with 40 additions and 33 deletions.
1 change: 1 addition & 0 deletions softdevice_controller/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Bug fixes
* Fixed an issue where a BIS Broadcaster would transmit invalid parameters in the BIG Info if a BIG was created with ``num_bis`` set to ``1`` and ``packing`` set to ``1`` (interleaved).
This could happen with both the LL Create BIG and LL Create BIG Test commands (DRGN-21912).
* Fixed an issue with the controller-initiated autonomous LE Power Control Request procedure for Coded PHY that could lead to a disconnection. (DRGN-21923)
* Fixed an issue where the |controller| could assert if a BIS Receiver stops receiving packets from the BIS Broadcaster. (DRGN-21949)

nRF Connect SDK v2.6.0
**********************
Expand Down
12 changes: 9 additions & 3 deletions softdevice_controller/include/sdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,12 @@ extern "C" {
/** Maximum shared memory required for peripheral links. */
#define SDC_MEM_PERIPHERAL_LINKS_SHARED 17

/** @brief Maximum memory required when supporting LE Power Control.
*
* @param[in] num_links Total number of peripheral and central links supported.
*/
#define SDC_MEM_LE_POWER_CONTROL(num_links) ((num_links) > 0 ? 0 : 0)

/** Memory required for Quality of Service (QoS) channel survey module. */
#define SDC_MEM_QOS_CHANNEL_SURVEY (40)

Expand Down Expand Up @@ -254,7 +260,7 @@ extern "C" {
#define __MEM_MINIMAL_PERIODIC_ADV_RSP_SET_SIZE_WITH_RX (465)
#define __MEM_MINIMAL_PERIODIC_ADV_RSP_SET_SIZE_WITHOUT_RX (166)
#define __MEM_FOR_PERIODIC_ADV_RSP_FAILURE_REPORTING (224)
#define __MEM_PER_ISO_PDU_POOL(count) ((count) > 0 ? (16 + (count) * 296) : 0)
#define __MEM_PER_ISO_PDU_POOL(count) ((count) > 0 ? (16 + (count) * 288) : 0)
#define __MEM_PER_ISO_TX_HCI_BUFFER(count) ((count) > 0 ? (12 + (count) * 300) : 0)

/** Memory required per periodic advertising with responses set.
Expand Down Expand Up @@ -296,7 +302,7 @@ extern "C" {
/** @brief Maximum memory required for the ISO RX path SDUs.
* @param[in] count Number of shared SDUs allocated for the RX path.
* @param[in] size Maximum size of SDUs being used. */
#define SDC_MEM_ISO_RX_SDU_POOL_SIZE(count, size) ((count) > 0 ? (8 + (count) * ((size) + 21)) : 0)
#define SDC_MEM_ISO_RX_SDU_POOL_SIZE(count, size) ((count) > 0 ? (8 + (count) * ((size) + 13)) : 0)

/** @brief Maximum memory required for the ISO TX PDU pool.
* @param[in] tx_pdu_buffer_per_stream_count Number of TX PDU buffers allocated for each BIS or CIS stream.
Expand All @@ -310,7 +316,7 @@ extern "C" {
/** @brief Maximum memory required for the ISO TX path SDUs.
* @param[in] count Number of shared SDUs allocated for the TX path.
* @param[in] size Maximum size of SDUs being used. */
#define SDC_MEM_ISO_TX_SDU_POOL_SIZE(count, size) ((count) > 0 ? (12 + (count) * ((size) + 53)) : 0)
#define SDC_MEM_ISO_TX_SDU_POOL_SIZE(count, size) ((count) > 0 ? (12 + (count) * ((size) + 49)) : 0)

/** @} end of sdc_mem_defines */

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x21C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x21C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:43:41Z'
timestamp: '2024-04-30T09:16:59Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions softdevice_controller/lib/cortex-m4/hard-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x11C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x11C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:41:40Z'
timestamp: '2024-04-30T09:15:50Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions softdevice_controller/lib/cortex-m4/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x11C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x11C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:41:40Z'
timestamp: '2024-04-30T09:15:50Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x11C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x11C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:41:40Z'
timestamp: '2024-04-30T09:15:50Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x41C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x41C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:45:03Z'
timestamp: '2024-04-30T09:18:10Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x41C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x41C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:45:03Z'
timestamp: '2024-04-30T09:18:10Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x41C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x41C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:45:03Z'
timestamp: '2024-04-30T09:18:10Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x31C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x31C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:47:22Z'
timestamp: '2024-04-30T09:19:27Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x31C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x31C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:47:22Z'
timestamp: '2024-04-30T09:19:27Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 393191c4b6723d1173d208c08838b787ba163d94
ll_subversion_number: '0x31C6'
git_revision: cc3be4f4b74ee32c186c7509f35b42c44d23a2ae
ll_subversion_number: '0x31C7'
ll_version_number: '0x0D'
timestamp: '2024-04-29T05:47:22Z'
timestamp: '2024-04-30T09:19:27Z'

0 comments on commit 804da6e

Please sign in to comment.