Skip to content

Commit 2a94095

Browse files
committed
softdevice_controller: rev 32d5e26ada9fd379df2670cd6985ac6e2126df32
CHANGELOG.rst contains the list of changes. Signed-off-by: Rubin Ingwer Gerritsen <[email protected]>
1 parent ed54e74 commit 2a94095

34 files changed

+52
-47
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Changes
4444
For more details, see the :ref:`scheduling_priorities_table` table.
4545
* The SoftDevice Controller can now utilize more than 64K of memory buffer passed to :c:func:`sdc_enable`. (DRGN-22067)
4646
* If LE Power Control is not being used, the TX power of CISes is now the same as for the corresponding ACL connection. (DRGN-23291)
47+
* Prioritize generating the Number Of Completed Packets event above all other events.
48+
Generate the event irrespective of the state of the Controller to Host data flow control. (DRGN-23284)
4749

4850
Bug fixes
4951
=========

softdevice_controller/include/sdc_hci_cmd_le.h

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -277,14 +277,17 @@ enum sdc_hci_subevent_le
277277
/** @brief Advertising Event Properties parameters. */
278278
typedef struct __PACKED __ALIGN(1)
279279
{
280-
uint16_t connectable_adv : 1;
281-
uint16_t scannable_adv : 1;
282-
uint16_t directed_adv : 1;
283-
uint16_t high_duty_cycle_adv : 1;
284-
uint16_t legacy_adv_packets : 1;
285-
uint16_t omit_adv_address : 1;
286-
uint16_t include_tx_power : 1;
287-
uint16_t rfu : 9;
280+
uint8_t connectable_adv : 1;
281+
uint8_t scannable_adv : 1;
282+
uint8_t directed_adv : 1;
283+
uint8_t high_duty_cycle_adv : 1;
284+
uint8_t legacy_adv_packets : 1;
285+
uint8_t omit_adv_address : 1;
286+
uint8_t include_tx_power : 1;
287+
uint8_t use_decision_pdus : 1;
288+
uint8_t include_adva_in_ext_header : 1;
289+
uint8_t include_adi_in_ext_header : 1;
290+
uint8_t rfu : 6;
288291
} sdc_hci_le_adv_event_properties_params_t;
289292

290293
/** @brief LE Advertising Report array parameters. */
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: c3da9a7fe9e1d321cd3fbe9a94f1c9d310ddfbfe
3-
ll_subversion_number: '0x101C'
2+
git_revision: 32d5e26ada9fd379df2670cd6985ac6e2126df32
3+
ll_subversion_number: '0x101E'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-09-24T09:45:48Z'
5+
timestamp: '2024-09-26T06:21:29Z'
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: c3da9a7fe9e1d321cd3fbe9a94f1c9d310ddfbfe
3-
ll_subversion_number: '0x101C'
2+
git_revision: 32d5e26ada9fd379df2670cd6985ac6e2126df32
3+
ll_subversion_number: '0x101E'
44
ll_version_number: '0x0E'
5-
timestamp: '2024-09-24T09:45:48Z'
5+
timestamp: '2024-09-26T06:21:29Z'

0 commit comments

Comments
 (0)