Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17cea648 authored by spuligil's avatar spuligil Committed by Ravindra Konda
Browse files

fw-api: CL 25266026 - update fw common interface files

HTT stats: add tx_ofdma_ppdu_dur_hist in tx_pdev_ppdu_dur TLV struct
Change-Id: I186f51faf04d13faa1514e27afd5af03c8e1db9d
CRs-Fixed: 2262693
parent 7eb727d8
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -5493,7 +5493,10 @@ typedef htt_stats_tx_pdev_rate_stats_be_ofdma_tlv

typedef struct {
    htt_tlv_hdr_t tlv_hdr;
    /** Tx PPDU duration histogram **/
    /** tx_ppdu_dur_hist:
     * Tx PPDU duration histogram, which holds the tx duration of PPDUs
     * under histogram bins of interval 250us
     */
    A_UINT32 tx_ppdu_dur_hist[HTT_PDEV_STATS_PPDU_DUR_HIST_BINS];
    A_UINT32 tx_success_time_us_low;
    A_UINT32 tx_success_time_us_high;
@@ -5501,6 +5504,11 @@ typedef struct {
    A_UINT32 tx_fail_time_us_high;
    A_UINT32 pdev_up_time_us_low;
    A_UINT32 pdev_up_time_us_high;
    /** tx_ofdma_ppdu_dur_hist:
     * Tx OFDMA PPDU duration histogram, which holds the tx duration of
     * OFDMA PPDUs under histogram bins of interval 250us
     */
    A_UINT32 tx_ofdma_ppdu_dur_hist[HTT_PDEV_STATS_PPDU_DUR_HIST_BINS];
} htt_stats_tx_pdev_ppdu_dur_tlv;
/* preserve old name alias for new name consistent with the tag name */
typedef htt_stats_tx_pdev_ppdu_dur_tlv htt_tx_pdev_ppdu_dur_stats_tlv;