From 1686551395db29c6d761acc02549898e39c0d438 Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Thu, 2 Dec 2021 07:04:03 +0530 Subject: [PATCH] Bluetooth: Add defines for Periodic Advertising Receive Enable Add defines for Periodic Advertising Receive Enable. Signed-off-by: Vinayak Kariappa Chettimada --- include/bluetooth/hci.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/bluetooth/hci.h b/include/bluetooth/hci.h index b537c7566c3..1061d0c2a27 100644 --- a/include/bluetooth/hci.h +++ b/include/bluetooth/hci.h @@ -1650,6 +1650,9 @@ struct bt_hci_rp_le_read_ant_info { uint8_t max_cte_len; }; +#define BT_HCI_LE_SET_PER_ADV_RECV_ENABLE_ENABLE BIT(0) +#define BT_HCI_LE_SET_PER_ADV_RECV_ENABLE_FILTER_DUPLICATE BIT(1) + #define BT_HCI_OP_LE_SET_PER_ADV_RECV_ENABLE BT_OP(BT_OGF_LE, 0x0059) struct bt_hci_cp_le_set_per_adv_recv_enable { uint16_t handle;