[][src]Struct esp_idf_bindgen::wifi_csi_config_t

#[repr(C)]pub struct wifi_csi_config_t {
    pub lltf_en: bool,
    pub htltf_en: bool,
    pub stbc_htltf2_en: bool,
    pub ltf_merge_en: bool,
    pub channel_filter_en: bool,
    pub manu_scale: bool,
    pub shift: u8,
}

@brief Channel state information(CSI) configuration type

Fields

lltf_en: bool

< enable to receive legacy long training field(lltf) data. Default enabled

htltf_en: bool

< enable to receive HT long training field(htltf) data. Default enabled

stbc_htltf2_en: bool

< enable to receive space time block code HT long training field(stbc-htltf2) data. Default enabled

ltf_merge_en: bool

< enable to generate htlft data by averaging lltf and ht_ltf data when receiving HT packet. Otherwise, use ht_ltf data directly. Default enabled

channel_filter_en: bool

< enable to turn on channel filter to smooth adjacent sub-carrier. Disable it to keep independence of adjacent sub-carrier. Default enabled

manu_scale: bool

< manually scale the CSI data by left shifting or automatically scale the CSI data. If set true, please set the shift bits. false: automatically. true: manually. Default false

shift: u8

< manually left shift bits of the scale of the CSI data. The range of the left shift bits is 0~15

Trait Implementations

impl Clone for wifi_csi_config_t[src]

impl Copy for wifi_csi_config_t[src]

impl Debug for wifi_csi_config_t[src]

Auto Trait Implementations

impl Send for wifi_csi_config_t

impl Sync for wifi_csi_config_t

impl Unpin for wifi_csi_config_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.