1.4.3.10 SYS_WIFI_SCAN_CONFIG Struct
C
typedef struct
{
/* Wi-Fi station mode SSID */
uint8_t ssid[33];
/* Wi-Fi station mode passphrase */
uint8_t psk[64];
/* Wi-Fi station mode authentication type */
SYS_WIFI_AUTH authType;
/* Wi-Fi station mode channel number.
values of channel:
0 - scan and connect to all the channels
1 to 13 - - scan and connect to specified channel */
uint8_t channel;
/* Wi-Fi station mode auto connect flag.
value 0- Don't connect to AP, wait for client request.
value 1- Connect to AP immediately */
bool autoConnect;
/* Wi-Fi station mode IP address */
IPV4_ADDR ipAddr;
} SYS_WIFI_STA_CONFIG;
Summary
Configuration of ssid scan parameters.
Description
Configuration of ssid scan parameters.
Remarks
None.
