1 /* 2 * Copyright (c) 2020 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /* Performs initialization of Direction Finding in Host */ 8 int le_df_init(void); 9 10 int hci_df_prepare_connectionless_iq_report(struct net_buf *buf, 11 struct bt_df_per_adv_sync_iq_samples_report *report, 12 struct bt_le_per_adv_sync **per_adv_sync_to_report); 13 int hci_df_vs_prepare_connectionless_iq_report(struct net_buf *buf, 14 struct bt_df_per_adv_sync_iq_samples_report *report, 15 struct bt_le_per_adv_sync **per_adv_sync_to_report); 16 int hci_df_prepare_connection_iq_report(struct net_buf *buf, 17 struct bt_df_conn_iq_samples_report *report, 18 struct bt_conn **conn_to_report); 19 int hci_df_vs_prepare_connection_iq_report(struct net_buf *buf, 20 struct bt_df_conn_iq_samples_report *report, 21 struct bt_conn **conn_to_report); 22 int hci_df_prepare_conn_cte_req_failed(struct net_buf *buf, 23 struct bt_df_conn_iq_samples_report *report, 24 struct bt_conn **conn_to_report); 25