[][src]Struct esp_idf_bindgen::wifi_ap_config_t

#[repr(C)]pub struct wifi_ap_config_t {
    pub ssid: [u8; 32],
    pub password: [u8; 64],
    pub ssid_len: u8,
    pub channel: u8,
    pub authmode: wifi_auth_mode_t,
    pub ssid_hidden: u8,
    pub max_connection: u8,
    pub beacon_interval: u16,
}

@brief Soft-AP configuration settings for the ESP32

Fields

ssid: [u8; 32]

< SSID of ESP32 soft-AP. If ssid_len field is 0, this must be a Null terminated string. Otherwise, length is set according to ssid_len.

password: [u8; 64]

< Password of ESP32 soft-AP. Null terminated string.

ssid_len: u8

< Optional length of SSID field.

channel: u8

< Channel of ESP32 soft-AP

authmode: wifi_auth_mode_t

< Auth mode of ESP32 soft-AP. Do not support AUTH_WEP in soft-AP mode

ssid_hidden: u8

< Broadcast SSID or not, default 0, broadcast the SSID

max_connection: u8

< Max number of stations allowed to connect in, default 4, max 10

beacon_interval: u16

< Beacon interval, 100 ~ 60000 ms, default 100 ms

Trait Implementations

impl Clone for wifi_ap_config_t[src]

impl Copy for wifi_ap_config_t[src]

Auto Trait Implementations

impl Send for wifi_ap_config_t

impl Sync for wifi_ap_config_t

impl Unpin for wifi_ap_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.