Skip to content

Commit 3a8e28d

Browse files
toomaszme-no-dev
authored andcommitted
change esp_wifi_scan_start to async mode (espressif#574)
1 parent 41e36a7 commit 3a8e28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/WiFi/src/WiFiScan.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ int8_t WiFiScanClass::scanNetworks(bool async, bool show_hidden, bool passive, u
7979
config.scan_time.active.min = 100;
8080
config.scan_time.active.max = max_ms_per_chan;
8181
}
82-
if(esp_wifi_scan_start(&config, WiFiScanClass::_scanAsync) == ESP_OK) {
82+
if(esp_wifi_scan_start(&config, false) == ESP_OK) {
8383
WiFiScanClass::_scanComplete = false;
8484
WiFiScanClass::_scanStarted = true;
8585

0 commit comments

Comments
 (0)