Bluetooth: Fix missing LE conn param req bit in set LE evt mask
With the introduction of event mask implementation in the Controller, it is discovered that peer centrals initiating LE connection parameter requests timed out as the Host did not get/enable the HCI LE connection parameter request event in the set LE event mask command. Fix by adding the LE connection parameter request event bit mask while creating set LE event mask command. Jira: ZEP-2027 Change-id: Ida7750f375addc8a91036fffc47325518a3d2ec0 Signed-off-by: Vinayak Chettimada <vinayak.kariappa.chettimada@nordicsemi.no> Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
045f076e5e
commit
a6f6adbd6b
1 changed files with 1 additions and 0 deletions
|
@ -3052,6 +3052,7 @@ static int le_init(void)
|
|||
mask |= BT_EVT_MASK_LE_CONN_COMPLETE;
|
||||
mask |= BT_EVT_MASK_LE_CONN_UPDATE_COMPLETE;
|
||||
mask |= BT_EVT_MASK_LE_REMOTE_FEAT_COMPLETE;
|
||||
mask |= BT_EVT_MASK_LE_CONN_PARAM_REQ;
|
||||
}
|
||||
|
||||
if (IS_ENABLED(CONFIG_BLUETOOTH_SMP)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue