ESP32 CSI question
Posted: Thu Jan 03, 2019 8:27 am
Hi ,
We are using esp32 to get wifi CSI (Channel State Information) data. We want to know how the data structure of Buffer corresponding with subcarrier ID. ( is it this way : subcarrier-31~~subcarrier0~~subcarrier31,or other way?)
typedef struct {
wifi_pkt_rx_ctrl_t rx_ctrl;/**< received packet radio metadata header of the CSI data */
uint8_t mac[6]; /**< source MAC address of the CSI data */
bool last_word_invalid; /**< last four bytes of the CSI data is invalid or not */
int8_t *buf; /**< buffer of CSI data */
uint16_t len; /**< length of CSI data */
} wifi_csi_i
We are using esp32 to get wifi CSI (Channel State Information) data. We want to know how the data structure of Buffer corresponding with subcarrier ID. ( is it this way : subcarrier-31~~subcarrier0~~subcarrier31,or other way?)
typedef struct {
wifi_pkt_rx_ctrl_t rx_ctrl;/**< received packet radio metadata header of the CSI data */
uint8_t mac[6]; /**< source MAC address of the CSI data */
bool last_word_invalid; /**< last four bytes of the CSI data is invalid or not */
int8_t *buf; /**< buffer of CSI data */
uint16_t len; /**< length of CSI data */
} wifi_csi_i