Home
last modified time | relevance | path

Searched refs:iq_report (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_sync.c1256 uint8_t slot_durations, struct node_rx_iq_report *iq_report) in iq_report_create() argument
1265 iq_report->rx.hdr.type = NODE_RX_TYPE_SYNC_IQ_SAMPLE_REPORT; in iq_report_create()
1266 iq_report->sample_count = radio_df_iq_samples_amount_get(); in iq_report_create()
1267 iq_report->packet_status = packet_status; in iq_report_create()
1268 iq_report->rssi_ant_id = ant; in iq_report_create()
1269 iq_report->cte_info = *(struct pdu_cte_info *)&cte_info; in iq_report_create()
1270 iq_report->local_slot_durations = slot_durations; in iq_report_create()
1274 iq_report->event_counter = lll->event_counter - 1; in iq_report_create()
1276 ftr = &iq_report->rx.rx_ftr; in iq_report_create()
1282 static void iq_report_incomplete_create(struct lll_sync *lll, struct node_rx_iq_report *iq_report) in iq_report_incomplete_create() argument
[all …]
Dlll_test.c132 struct node_rx_iq_report *iq_report; in create_iq_report() local
149 iq_report = ull_df_iq_report_alloc(); in create_iq_report()
150 if (!iq_report) { in create_iq_report()
154 iq_report->rx.hdr.type = NODE_RX_TYPE_DTM_IQ_SAMPLE_REPORT; in create_iq_report()
155 iq_report->sample_count = sample_cnt; in create_iq_report()
156 iq_report->packet_status = ((crc_ok) ? BT_HCI_LE_CTE_CRC_OK : in create_iq_report()
158 iq_report->rssi_ant_id = ant; in create_iq_report()
159 iq_report->cte_info = *(struct pdu_cte_info *)&cte_info; in create_iq_report()
160 iq_report->local_slot_durations = test_slot_duration; in create_iq_report()
161 iq_report->chan_idx = test_chan; in create_iq_report()
[all …]
Dlll_conn.c1238 struct node_rx_iq_report *iq_report; local
1245 iq_report = ull_df_iq_report_alloc();
1247 iq_report->rx.hdr.type = NODE_RX_TYPE_CONN_IQ_SAMPLE_REPORT;
1248 iq_report->sample_count = radio_df_iq_samples_amount_get();
1249 iq_report->packet_status = packet_status;
1250 iq_report->rssi_ant_id = ant;
1251 iq_report->cte_info = *(struct pdu_cte_info *)&cte_info;
1252 iq_report->local_slot_durations = rx_params->slot_durations;
1256 iq_report->event_counter = lll->event_counter - 1;
1258 ftr = &iq_report->rx.rx_ftr;
[all …]
/Zephyr-latest/subsys/bluetooth/controller/hci/
Dhci.c2968 struct node_rx_iq_report *iq_report; in le_df_connectionless_iq_report() local
2978 iq_report = (struct node_rx_iq_report *)node_rx; in le_df_connectionless_iq_report()
2985 lll = iq_report->rx.rx_ftr.param; in le_df_connectionless_iq_report()
3019 per_evt_counter = iq_report->event_counter; in le_df_connectionless_iq_report()
3027 if (iq_report->packet_status == BT_HCI_LE_CTE_INSUFFICIENT_RESOURCES) { in le_df_connectionless_iq_report()
3030 samples_cnt = MAX(1, iq_report->sample_count); in le_df_connectionless_iq_report()
3037 rssi = RSSI_DBM_TO_DECI_DBM(iq_report->rx.rx_ftr.rssi); in le_df_connectionless_iq_report()
3042 sep->rssi_ant_id = iq_report->rssi_ant_id; in le_df_connectionless_iq_report()
3043 sep->cte_type = iq_report->cte_info.type; in le_df_connectionless_iq_report()
3045 sep->chan_idx = iq_report->chan_idx; in le_df_connectionless_iq_report()
[all …]
/Zephyr-latest/subsys/bluetooth/host/
Dconn.c4156 struct bt_df_conn_iq_samples_report iq_report; in bt_hci_le_df_connection_iq_report_common() local
4161 err = hci_df_prepare_connection_iq_report(buf, &iq_report, &conn); in bt_hci_le_df_connection_iq_report_common()
4168 err = hci_df_vs_prepare_connection_iq_report(buf, &iq_report, &conn); in bt_hci_le_df_connection_iq_report_common()
4182 callback->cte_report_cb(conn, &iq_report); in bt_hci_le_df_connection_iq_report_common()
4189 cb->cte_report_cb(conn, &iq_report); in bt_hci_le_df_connection_iq_report_common()
4212 struct bt_df_conn_iq_samples_report iq_report; in bt_hci_le_df_cte_req_failed() local
4216 err = hci_df_prepare_conn_cte_req_failed(buf, &iq_report, &conn); in bt_hci_le_df_cte_req_failed()
4226 callback->cte_report_cb(conn, &iq_report); in bt_hci_le_df_cte_req_failed()
4233 cb->cte_report_cb(conn, &iq_report); in bt_hci_le_df_cte_req_failed()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dlll.h366 struct cte_conn_iq_report *iq_report; member
/Zephyr-latest/include/zephyr/bluetooth/
Dconn.h1799 const struct bt_df_conn_iq_samples_report *iq_report);
/Zephyr-latest/tests/bluetooth/controller/common/src/
Dhelper_pdu.c409 rx->rx_ftr.iq_report = (struct cte_conn_iq_report *)param; in helper_node_encode_cte_rsp()
1084 struct cte_conn_iq_report *rx_iq_report = rx->rx_ftr.iq_report; in helper_node_verify_cte_rsp()