Skip to content

Commit 864c91b

Browse files
alexstanoev-nordicsean-madigan
authored andcommitted
bluetooth: controller: Add SCI to hci_internal_supported_commands
Update internal_supported_commands with SDC commands added in a04c3ca Signed-off-by: Aleksandar Stanoev <[email protected]>
1 parent 6ec8b0e commit 864c91b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

subsys/bluetooth/controller/hci_internal.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,7 @@ void hci_internal_supported_commands(sdc_hci_ip_supported_commands_t *cmds)
585585

586586
#if defined(CONFIG_BT_CTLR_SET_HOST_FEATURE)
587587
cmds->hci_le_set_host_feature = 1;
588+
cmds->hci_le_set_host_feature_v2 = 1;
588589
#endif
589590

590591
#if defined(CONFIG_BT_CTLR_CENTRAL_ISO)
@@ -661,6 +662,13 @@ void hci_internal_supported_commands(sdc_hci_ip_supported_commands_t *cmds)
661662
#if defined(CONFIG_BT_CTLR_FRAME_SPACE_UPDATE)
662663
cmds->hci_le_frame_space_update = 1;
663664
#endif /* CONFIG_BT_CTLR_FRAME_SPACE_UPDATE */
665+
#if defined(CONFIG_BT_CTLR_SHORTER_CONNECTION_INTERVALS)
666+
cmds->hci_le_connection_rate_request = 1;
667+
#if defined(CONFIG_BT_CENTRAL)
668+
cmds->hci_le_set_default_rate_parameters = 1;
669+
#endif /* CONFIG_BT_CENTRAL */
670+
cmds->hci_le_read_minimum_supported_connection_interval = 1;
671+
#endif /* CONFIG_BT_CTLR_SHORTER_CONNECTION_INTERVALS */
664672
}
665673

666674
#if defined(CONFIG_BT_HCI_VS)

0 commit comments

Comments
 (0)