Bluetooth: controller: split: Fix Ext Scanning when coded PHY unsupported
Fix implementation from starting coded PHY scan window. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
1aa9ca244f
commit
18995306f1
2 changed files with 22 additions and 12 deletions
|
@ -1828,7 +1828,11 @@ static void le_set_ext_scan_param(struct net_buf *buf, struct net_buf **evt)
|
|||
phys = cmd->phys;
|
||||
p = cmd->p;
|
||||
|
||||
phys_bitmask = BT_HCI_LE_EXT_SCAN_PHY_CODED | BT_HCI_LE_EXT_SCAN_PHY_1M;
|
||||
phys_bitmask = BT_HCI_LE_EXT_SCAN_PHY_1M;
|
||||
if (IS_ENABLED(CONFIG_BT_CTLR_PHY_CODED)) {
|
||||
phys_bitmask |= BT_HCI_LE_EXT_SCAN_PHY_CODED;
|
||||
}
|
||||
|
||||
do {
|
||||
uint16_t interval;
|
||||
uint16_t window;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue