forked from espressif/esp-idf
Merge branch 'bugfix/pbc_overlap_in_wps_pin_method_v5.1' into 'release/v5.1'
Fix for issue of wps-pbc overlap in wps-pin method(v5.1) See merge request espressif/esp-idf!25695
This commit is contained in:
@ -1570,9 +1570,13 @@ wifi_wps_scan_done(void *arg, ETS_STATUS status)
|
||||
} else if (sm->discover_ssid_cnt == 0) {
|
||||
wps_set_status(WPS_STATUS_SCANNING);
|
||||
} else {
|
||||
wpa_printf(MSG_INFO, "PBC session overlap!");
|
||||
wps_set_status(WPS_STATUS_DISABLE);
|
||||
esp_event_post(WIFI_EVENT, WIFI_EVENT_STA_WPS_ER_PBC_OVERLAP, 0, 0, OS_BLOCK);
|
||||
if (wps_get_type() == WPS_TYPE_PBC) {
|
||||
wpa_printf(MSG_INFO, "PBC session overlap!");
|
||||
wps_set_status(WPS_STATUS_DISABLE);
|
||||
esp_event_post(WIFI_EVENT, WIFI_EVENT_STA_WPS_ER_PBC_OVERLAP, 0, 0, OS_BLOCK);
|
||||
} else {
|
||||
wps_set_status(WPS_STATUS_PENDING);
|
||||
}
|
||||
}
|
||||
|
||||
wpa_printf(MSG_DEBUG, "wps scan_done discover_ssid_cnt = %d", sm->discover_ssid_cnt);
|
||||
|
Reference in New Issue
Block a user