WifiConfig_StoredNetwork Struct
Header: #include <applibs/wificonfig.h>
The properties of a stored Wi-Fi network, which represents a 802.11 Service Set.
Note
This is an alias to a versioned structure. Define WIFICONFIG_STRUCTS_VERSION to use this alias.
struct WifiConfig_StoredNetwork {
uint32_t z__magicAndVersion;
uint8_t ssid[WIFICONFIG_SSID_MAX_LENGTH];
uint8_t ssidLength;
bool isEnabled;
bool isConnected;
WifiConfig_Security_Type security;
};
Members
uint32_t z__magicAndVersion
A magic number that uniquely identifies the struct version.
uint8_t ssid
The fixed length buffer that contains the SSID.
uint8_t ssidLength
The size of the SSID element in bytes.
bool isEnabled
Indicates whether the network is enabled.
bool isConnected
Indicates whether the network is connected.
WifiConfig_Security_Type security
The WifiConfig_Security value that specifies the security key setting.