2020-12-06 03:42:44 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Nordic Semiconductor ASA
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Performs initialization of Direction Finding in Host */
|
|
|
|
int le_df_init(void);
|
2021-04-22 17:19:05 +08:00
|
|
|
|
2022-02-08 15:46:45 +08:00
|
|
|
int hci_df_prepare_connectionless_iq_report(struct net_buf *buf,
|
|
|
|
struct bt_df_per_adv_sync_iq_samples_report *report,
|
|
|
|
struct bt_le_per_adv_sync **per_adv_sync_to_report);
|
2021-11-24 21:12:07 +08:00
|
|
|
int hci_df_prepare_connection_iq_report(struct net_buf *buf,
|
|
|
|
struct bt_df_conn_iq_samples_report *report,
|
|
|
|
struct bt_conn **conn_to_report);
|
2022-01-08 21:06:49 +08:00
|
|
|
int hci_df_prepare_conn_cte_req_failed(struct net_buf *buf,
|
|
|
|
struct bt_df_conn_iq_samples_report *report,
|
|
|
|
struct bt_conn **conn_to_report);
|