Home
last modified time | relevance | path

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

/Zephyr-4.1.0/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_sync.c1261 uint8_t slot_durations, struct node_rx_iq_report *iq_report) in iq_report_create() argument
1270 iq_report->rx.hdr.type = NODE_RX_TYPE_SYNC_IQ_SAMPLE_REPORT; in iq_report_create()
1271 iq_report->sample_count = radio_df_iq_samples_amount_get(); in iq_report_create()
1272 iq_report->packet_status = packet_status; in iq_report_create()
1273 iq_report->rssi_ant_id = ant; in iq_report_create()
1274 iq_report->cte_info = *(struct pdu_cte_info *)&cte_info; in iq_report_create()
1275 iq_report->local_slot_durations = slot_durations; in iq_report_create()
1279 iq_report->event_counter = lll->event_counter - 1; in iq_report_create()
1281 ftr = &iq_report->rx.rx_ftr; in iq_report_create()
1287 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.c1260 struct node_rx_iq_report *iq_report; local
1267 iq_report = ull_df_iq_report_alloc();
1269 iq_report->rx.hdr.type = NODE_RX_TYPE_CONN_IQ_SAMPLE_REPORT;
1270 iq_report->sample_count = radio_df_iq_samples_amount_get();
1271 iq_report->packet_status = packet_status;
1272 iq_report->rssi_ant_id = ant;
1273 iq_report->cte_info = *(struct pdu_cte_info *)&cte_info;
1274 iq_report->local_slot_durations = rx_params->slot_durations;
1278 iq_report->event_counter = lll->event_counter - 1;
1280 ftr = &iq_report->rx.rx_ftr;
[all …]
/Zephyr-4.1.0/subsys/bluetooth/controller/hci/
Dhci.c3003 struct node_rx_iq_report *iq_report; in le_df_connectionless_iq_report() local
3013 iq_report = (struct node_rx_iq_report *)node_rx; in le_df_connectionless_iq_report()
3020 lll = iq_report->rx.rx_ftr.param; in le_df_connectionless_iq_report()
3054 per_evt_counter = iq_report->event_counter; in le_df_connectionless_iq_report()
3062 if (iq_report->packet_status == BT_HCI_LE_CTE_INSUFFICIENT_RESOURCES) { in le_df_connectionless_iq_report()
3065 samples_cnt = MAX(1, iq_report->sample_count); in le_df_connectionless_iq_report()
3072 rssi = RSSI_DBM_TO_DECI_DBM(iq_report->rx.rx_ftr.rssi); in le_df_connectionless_iq_report()
3077 sep->rssi_ant_id = iq_report->rssi_ant_id; in le_df_connectionless_iq_report()
3078 sep->cte_type = iq_report->cte_info.type; in le_df_connectionless_iq_report()
3080 sep->chan_idx = iq_report->chan_idx; in le_df_connectionless_iq_report()
[all …]
/Zephyr-4.1.0/subsys/bluetooth/host/
Dconn.c4272 struct bt_df_conn_iq_samples_report iq_report; in bt_hci_le_df_connection_iq_report_common() local
4277 err = hci_df_prepare_connection_iq_report(buf, &iq_report, &conn); in bt_hci_le_df_connection_iq_report_common()
4284 err = hci_df_vs_prepare_connection_iq_report(buf, &iq_report, &conn); in bt_hci_le_df_connection_iq_report_common()
4298 callback->cte_report_cb(conn, &iq_report); in bt_hci_le_df_connection_iq_report_common()
4305 cb->cte_report_cb(conn, &iq_report); in bt_hci_le_df_connection_iq_report_common()
4328 struct bt_df_conn_iq_samples_report iq_report; in bt_hci_le_df_cte_req_failed() local
4332 err = hci_df_prepare_conn_cte_req_failed(buf, &iq_report, &conn); in bt_hci_le_df_cte_req_failed()
4342 callback->cte_report_cb(conn, &iq_report); in bt_hci_le_df_cte_req_failed()
4349 cb->cte_report_cb(conn, &iq_report); in bt_hci_le_df_cte_req_failed()
/Zephyr-4.1.0/subsys/bluetooth/controller/ll_sw/
Dlll.h366 struct cte_conn_iq_report *iq_report; member
/Zephyr-4.1.0/include/zephyr/bluetooth/
Dconn.h1828 const struct bt_df_conn_iq_samples_report *iq_report);
/Zephyr-4.1.0/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()