Home
last modified time | relevance | path

Searched refs:pktcapture_hdr (Results 1 – 2 of 2) sorted by relevance

/wlan-driver/qcacld-3.0/components/pkt_capture/core/src/
H A Dwlan_pkt_capture_data_txrx.c162 struct pkt_capture_tx_hdr_elem_t *pktcapture_hdr, in pkt_capture_tx_get_phy_info() argument
166 uint8_t preamble_type = pktcapture_hdr->preamble; in pkt_capture_tx_get_phy_info()
175 pktcapture_hdr->rate, in pkt_capture_tx_get_phy_info()
180 if (pktcapture_hdr->nss == 2) in pkt_capture_tx_get_phy_info()
181 mcs = 8 + pktcapture_hdr->mcs; in pkt_capture_tx_get_phy_info()
183 mcs = pktcapture_hdr->mcs; in pkt_capture_tx_get_phy_info()
189 mcs = pktcapture_hdr->mcs; in pkt_capture_tx_get_phy_info()
191 mcs << 0x4 | (pktcapture_hdr->nss); in pkt_capture_tx_get_phy_info()
192 tx_status->vht_flag_values2 = pktcapture_hdr->bw; in pkt_capture_tx_get_phy_info()
202 tx_status->he_data3 |= (pktcapture_hdr->mcs << 0x8) | in pkt_capture_tx_get_phy_info()
[all …]
H A Dwlan_pkt_capture_main.c273 struct pkt_capture_tx_hdr_elem_t pktcapture_hdr = {0}; in pkt_capture_process_tx_data() local
287 pktcapture_hdr.ppdu_id = tx_comp_status.ppdu_id; in pkt_capture_process_tx_data()
288 pktcapture_hdr.timestamp = tx_comp_status.tsf; in pkt_capture_process_tx_data()
289 pktcapture_hdr.preamble = tx_comp_status.pkt_type; in pkt_capture_process_tx_data()
290 pktcapture_hdr.mcs = tx_comp_status.mcs; in pkt_capture_process_tx_data()
291 pktcapture_hdr.bw = tx_comp_status.bw; in pkt_capture_process_tx_data()
293 pktcapture_hdr.nss = 0; in pkt_capture_process_tx_data()
294 pktcapture_hdr.rssi_comb = tx_comp_status.ack_frame_rssi; in pkt_capture_process_tx_data()
296 pktcapture_hdr.rate = tx_comp_status.mcs; in pkt_capture_process_tx_data()
297 pktcapture_hdr.stbc = tx_comp_status.stbc; in pkt_capture_process_tx_data()
[all …]