Skip to content

Commit 6760cdf

Browse files
committed
Let connect() choose strongest AP if channel and BSSID are not given
1 parent 17a8baf commit 6760cdf

File tree

1 file changed

+4
-4
lines changed
  • ports/esp32s2/common-hal/wifi

1 file changed

+4
-4
lines changed

ports/esp32s2/common-hal/wifi/Radio.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ wifi_radio_error_t common_hal_wifi_radio_connect(wifi_radio_obj_t *self, uint8_t
142142
} else {
143143
config->sta.bssid_set = 0;
144144
}
145-
// if channel and bssid both not set, do a full scan instead of fast scan
146-
// this will ensure that the best AP is chosen automatically
147-
if ((self->sta.bssid_set == 0) && (self->sta.channel == NULL)) {
148-
config.scan_method = WIFI_ALL_CHANNEL_SCAN;
145+
// If channel is 0 (default/unset) and BSSID is not given, do a full scan instead of fast scan
146+
// This will ensure that the best AP in range is chosen automatically
147+
if ((config->sta.bssid_set == 0) && (config->sta.channel == 0)) {
148+
config->sta.scan_method = WIFI_ALL_CHANNEL_SCAN;
149149
}
150150
esp_wifi_set_config(ESP_IF_WIFI_STA, config);
151151
self->starting_retries = 5;

0 commit comments

Comments
 (0)