Comment the sdk_station_config slots. (#217)
Note bssid_set should be set to one if the bssid is used otherwise zero.
This commit is contained in:
parent
c2953eda38
commit
97de07f8b2
1 changed files with 4 additions and 4 deletions
|
@ -15,10 +15,10 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct sdk_station_config {
|
struct sdk_station_config {
|
||||||
uint8_t ssid[32];
|
uint8_t ssid[32]; /* Null terminated string */
|
||||||
uint8_t password[64];
|
uint8_t password[64]; /* Null terminated string */
|
||||||
uint8_t bssid_set;
|
uint8_t bssid_set; /* One if bssid is used, otherwise zero. */
|
||||||
uint8_t bssid[6];
|
uint8_t bssid[6]; /* The BSSID bytes */
|
||||||
};
|
};
|
||||||
|
|
||||||
bool sdk_wifi_station_get_config(struct sdk_station_config *config);
|
bool sdk_wifi_station_get_config(struct sdk_station_config *config);
|
||||||
|
|
Loading…
Reference in a new issue