Skip to content

Commit 65b734a

Browse files
olivier-le-sagerlubos
authored andcommitted
softdevice_controller: rev 5fdd684412a81effe442bbce0401a00ddc9be520
CHANGELOG.rst contains the list of changes. Signed-off-by: Olivier Lesage <olivier.lesage@nordicsemi.no>
1 parent 82f5a0c commit 65b734a

35 files changed

+88
-40
lines changed

softdevice_controller/CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,18 @@ Added
2424
Changes
2525
=======
2626

27+
* The LE Channel Selection Algorithm event is no longer raised when a connection was established as a peripheral using legacy advertising commands. (DRGN-24660)
28+
This behavior was changed to accommodate ES-27170.
2729
* The CIS or BIS sink now generate lost SDUs immediately when scheduling conflicts occur instead of after receiving the next valid SDU. (DRGN-24062)
2830
* Removed support for running the SoftDevice Controller on the nRF54L15 DK v0.8.1 and earlier. (DRGN-21403)
2931
* Reduced latency when changing the list of subevents to which a Periodic Advertising with Responses Scanner is synchronized. (DRGN-24543)
3032

3133
Bug fixes
3234
=========
3335

36+
* Fixed an issue where the controller would fail to synchronize with a BIS Broadcaster. (DRGN-24670)
37+
This would occur when the Broadcaster has set ``Num_Bis=1``, ``NSE > 1``, and ``Sub_Interval == BIS_Spacing``.
38+
Previously, the controller would raise the LE BIG Sync Established event with status set to "Unsupported Feature or Parameter value (0x11)".
3439
* 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)
3540
* Fixed a rare issue where the scanner would assert when scanning and initiating at the same time. (DRGN-24198)
3641

softdevice_controller/include/sdc.h

-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,6 @@ typedef void (*sdc_fault_handler_t)(const char * file, const uint32_t line);
379379
*/
380380
typedef void (*sdc_callback_t)(void);
381381

382-
#define CS_ANTENNA_SWITCH_CALLBACK_TYPE_DEFINED
383382

384383
/** @brief Function prototype for antenna switching callback in Channel Sounding.
385384
*

softdevice_controller/include/sdc_hci_cmd_le.h

+44
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@ enum sdc_hci_opcode_le
289289
SDC_HCI_OPCODE_CMD_LE_CS_TEST = 0x2095,
290290
/** @brief See @ref sdc_hci_cmd_le_cs_test_end(). */
291291
SDC_HCI_OPCODE_CMD_LE_CS_TEST_END = 0x2096,
292+
/** @brief See @ref sdc_hci_cmd_le_set_host_feature_v2(). */
293+
SDC_HCI_OPCODE_CMD_LE_SET_HOST_FEATURE_V2 = 0x2097,
292294
};
293295

294296
/** @brief LE subevent Code values. */
@@ -2719,6 +2721,13 @@ typedef struct __PACKED __ALIGN(1)
27192721
uint8_t override_params_data[];
27202722
} sdc_hci_cmd_le_cs_test_t;
27212723

2724+
/** @brief LE Set Host Feature [v2] command parameter(s). */
2725+
typedef struct __PACKED __ALIGN(1)
2726+
{
2727+
uint16_t bit_number;
2728+
uint8_t bit_value;
2729+
} sdc_hci_cmd_le_set_host_feature_v2_t;
2730+
27222731
/** @} end of HCI_COMMAND_PARAMETERS */
27232732

27242733
/**
@@ -9423,6 +9432,41 @@ uint8_t sdc_hci_cmd_le_cs_test(const sdc_hci_cmd_le_cs_test_t * p_params);
94239432
*/
94249433
uint8_t sdc_hci_cmd_le_cs_test_end(void);
94259434

9435+
/** @brief LE Set Host Feature [v2].
9436+
*
9437+
* The description below is extracted from Core_v6.0,
9438+
* Vol 4, Part E, Section 7.8.115
9439+
*
9440+
* The HCI_LE_Set_Host_Feature command is used by the Host to set or clear a bit
9441+
* controlled by the Host in the Link Layer FeatureSet stored in the Controller (see [Vol 6]
9442+
* Part B, Section 4.6).
9443+
*
9444+
* The Bit_Number parameter specifies the bit position in the FeatureSet.
9445+
*
9446+
* The Bit_Value parameter specifies whether the feature is enabled or disabled.
9447+
*
9448+
* If Bit_Number specifies a feature bit that is not controlled by the Host, the Controller
9449+
* shall return the error code Unsupported Feature or Parameter Value (0x11).
9450+
*
9451+
* If Bit_Value is set to 0x01 and Bit_Number specifies a feature bit that requires support of
9452+
* a feature that the Controller does not support, the Controller shall return the error code
9453+
* Unsupported Feature or Parameter Value (0x11).
9454+
*
9455+
* If the Host issues this command while the Controller has a connection to another
9456+
* device, the Controller shall return the error code Command Disallowed (0x0C).
9457+
*
9458+
* Event(s) generated (unless masked away):
9459+
* When the HCI_LE_Set_Host_Feature command has completed, an
9460+
* HCI_Command_Complete event shall be generated.
9461+
*
9462+
* @param[in] p_params Input parameters.
9463+
*
9464+
* @retval 0 if success.
9465+
* @return Returns value between 0x01-0xFF in case of error.
9466+
* See Vol 2, Part D, Error for a list of error codes and descriptions.
9467+
*/
9468+
uint8_t sdc_hci_cmd_le_set_host_feature_v2(const sdc_hci_cmd_le_set_host_feature_v2_t * p_params);
9469+
94269470
/** @} end of HCI_VS_API */
94279471

94289472
/** @} */
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x10B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x10B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:09:16Z'
5+
timestamp: '2025-02-26T13:57:46Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x10B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x10B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:09:16Z'
5+
timestamp: '2025-02-26T13:57:46Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x10B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x10B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:09:16Z'
5+
timestamp: '2025-02-26T13:57:46Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x20B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x20B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:10:17Z'
5+
timestamp: '2025-02-26T13:58:43Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x40B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x40B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:10:59Z'
5+
timestamp: '2025-02-26T13:59:24Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x40B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x40B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:10:59Z'
5+
timestamp: '2025-02-26T13:59:24Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x40B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x40B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:10:59Z'
5+
timestamp: '2025-02-26T13:59:24Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:12:00Z'
5+
timestamp: '2025-02-26T14:00:50Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:12:00Z'
5+
timestamp: '2025-02-26T14:00:50Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:12:00Z'
5+
timestamp: '2025-02-26T14:00:50Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:15:06Z'
5+
timestamp: '2025-02-26T14:04:19Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:15:06Z'
5+
timestamp: '2025-02-26T14:04:19Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3-
ll_subversion_number: '0x30B2'
2+
git_revision: 5fdd684412a81effe442bbce0401a00ddc9be520
3+
ll_subversion_number: '0x30B7'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-21T13:15:06Z'
5+
timestamp: '2025-02-26T14:04:19Z'

0 commit comments

Comments
 (0)