#[repr(C)]
pub struct wifi_init_config_t {
Show 24 fields pub osi_funcs: *mut wifi_osi_funcs_t, pub wpa_crypto_funcs: wpa_crypto_funcs_t, pub static_rx_buf_num: c_int, pub dynamic_rx_buf_num: c_int, pub tx_buf_type: c_int, pub static_tx_buf_num: c_int, pub dynamic_tx_buf_num: c_int, pub rx_mgmt_buf_type: c_int, pub rx_mgmt_buf_num: c_int, pub cache_tx_buf_num: c_int, pub csi_enable: c_int, pub ampdu_rx_enable: c_int, pub ampdu_tx_enable: c_int, pub amsdu_tx_enable: c_int, pub nvs_enable: c_int, pub nano_enable: c_int, pub rx_ba_win: c_int, pub wifi_task_core_id: c_int, pub beacon_max_len: c_int, pub mgmt_sbuf_num: c_int, pub feature_caps: u64, pub sta_disconnected_pm: bool, pub espnow_max_encrypt_num: c_int, pub magic: c_int,
}
Expand description

@brief WiFi stack configuration parameters passed to esp_wifi_init call.

Fields§

§osi_funcs: *mut wifi_osi_funcs_t

< WiFi OS functions

§wpa_crypto_funcs: wpa_crypto_funcs_t

< WiFi station crypto functions when connect

§static_rx_buf_num: c_int

< WiFi static RX buffer number

§dynamic_rx_buf_num: c_int

< WiFi dynamic RX buffer number

§tx_buf_type: c_int

< WiFi TX buffer type

§static_tx_buf_num: c_int

< WiFi static TX buffer number

§dynamic_tx_buf_num: c_int

< WiFi dynamic TX buffer number

§rx_mgmt_buf_type: c_int

< WiFi RX MGMT buffer type

§rx_mgmt_buf_num: c_int

< WiFi RX MGMT buffer number

§cache_tx_buf_num: c_int

< WiFi TX cache buffer number

§csi_enable: c_int

< WiFi channel state information enable flag

§ampdu_rx_enable: c_int

< WiFi AMPDU RX feature enable flag

§ampdu_tx_enable: c_int

< WiFi AMPDU TX feature enable flag

§amsdu_tx_enable: c_int

< WiFi AMSDU TX feature enable flag

§nvs_enable: c_int

< WiFi NVS flash enable flag

§nano_enable: c_int

< Nano option for printf/scan family enable flag

§rx_ba_win: c_int

< WiFi Block Ack RX window size

§wifi_task_core_id: c_int

< WiFi Task Core ID

§beacon_max_len: c_int

< WiFi softAP maximum length of the beacon

§mgmt_sbuf_num: c_int

< WiFi management short buffer number, the minimum value is 6, the maximum value is 32

§feature_caps: u64

< Enables additional WiFi features and capabilities

§sta_disconnected_pm: bool

< WiFi Power Management for station at disconnected status

§espnow_max_encrypt_num: c_int

< Maximum encrypt number of peers supported by espnow

§magic: c_int

< WiFi init magic number, it should be the last field

Trait Implementations§

source§

impl Clone for wifi_init_config_t

source§

fn clone(&self) -> wifi_init_config_t

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for wifi_init_config_t

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for wifi_init_config_t

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for wifi_init_config_t

Auto Trait Implementations§

§

impl RefUnwindSafe for wifi_init_config_t

§

impl !Send for wifi_init_config_t

§

impl !Sync for wifi_init_config_t

§

impl Unpin for wifi_init_config_t

§

impl UnwindSafe for wifi_init_config_t

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.