Bluetooth: hci: Add response structure for HCI CTE sampling enable cmd

Add missing response structure for HCI_LE_Set_Connectionless_IQ_-
Sampling_Enable command.

Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no>
This commit is contained in:
Piotr Pryga 2021-05-28 16:07:17 +02:00 committed by Carles Cufí
commit d8378d618a

View file

@ -1537,6 +1537,11 @@ struct bt_hci_cp_le_set_cl_cte_sampling_enable {
uint8_t ant_ids[0]; uint8_t ant_ids[0];
} __packed; } __packed;
struct bt_hci_rp_le_set_cl_cte_sampling_enable {
uint8_t status;
uint16_t sync_handle;
} __packed;
#define BT_HCI_LE_AOA_CTE_RSP BIT(0) #define BT_HCI_LE_AOA_CTE_RSP BIT(0)
#define BT_HCI_LE_AOD_CTE_RSP_1US BIT(1) #define BT_HCI_LE_AOD_CTE_RSP_1US BIT(1)
#define BT_HCI_LE_AOD_CTE_RSP_2US BIT(2) #define BT_HCI_LE_AOD_CTE_RSP_2US BIT(2)