Bluetooth: controller: set bit to indicate support for Request Peer SCA

Setting bit to indicate that LE Request Peer SCA command is supported

Signed-off-by: Erik Brockhoff <erbr@oticon.com>
This commit is contained in:
Erik Brockhoff 2022-11-30 10:25:24 +01:00 committed by Carles Cufí
commit d99052b316

View file

@ -954,6 +954,10 @@ static void read_supported_commands(struct net_buf *buf, struct net_buf **evt)
/* LE Set PHY Command. */ /* LE Set PHY Command. */
rp->commands[35] |= BIT(6); rp->commands[35] |= BIT(6);
#endif /* CONFIG_BT_CTLR_PHY */ #endif /* CONFIG_BT_CTLR_PHY */
#if defined(CONFIG_BT_CTLR_SCA_UPDATE)
/* LE Request Peer SCA */
rp->commands[43] |= BIT(2);
#endif /* CONFIG_BT_CTLR_SCA_UPDATE */
#endif /* CONFIG_BT_CONN */ #endif /* CONFIG_BT_CONN */
#if defined(CONFIG_BT_CTLR_DTM_HCI) #if defined(CONFIG_BT_CTLR_DTM_HCI)