Skip to content

Commit

Permalink
Merge branch 'feature/add_fast_connect_feature' into 'master'
Browse files Browse the repository at this point in the history
feat(wifi): add fast connect feature

See merge request sdk/ESP8266_NONOS_SDK!252
  • Loading branch information
xcguang committed Dec 2, 2019
2 parents db4323f + 15a15d6 commit 1998485
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/user_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,13 @@ typedef struct {
struct station_config {
uint8 ssid[32];
uint8 password[64];
uint8 channel;
uint8 bssid_set; // Note: If bssid_set is 1, station will just connect to the router
// with both ssid[] and bssid[] matched. Please check about this.
uint8 bssid[6];
wifi_fast_scan_threshold_t threshold;
bool open_and_wep_mode_disable; // Can connect to open/wep router by default.
bool all_channel_scan;
};

bool wifi_station_get_config(struct station_config *config);
Expand Down

0 comments on commit 1998485

Please sign in to comment.