Skip to content
Snippets Groups Projects
Commit b97c17e1 authored by puuu's avatar puuu Committed by Paul Sokolovsky
Browse files

esp8266/modnetwork.c: Allows AP reconnection without WiFi credentials

There is no automatic reconnect after wlan.active(False);
wlan.active(True). This commit provide the possibility to run
wlan.connect() without parameter, to reconnect to the previously
connected AP.

resolve #2493
parent eddcf0a5
No related branches found
No related tags found
No related merge requests found
...@@ -100,17 +100,23 @@ STATIC mp_obj_t esp_connect(mp_uint_t n_args, const mp_obj_t *args) { ...@@ -100,17 +100,23 @@ STATIC mp_obj_t esp_connect(mp_uint_t n_args, const mp_obj_t *args) {
mp_uint_t len; mp_uint_t len;
const char *p; const char *p;
if (n_args > 1) {
p = mp_obj_str_get_data(args[1], &len); p = mp_obj_str_get_data(args[1], &len);
memcpy(config.ssid, p, len); memcpy(config.ssid, p, len);
if (n_args > 2) {
p = mp_obj_str_get_data(args[2], &len); p = mp_obj_str_get_data(args[2], &len);
} else {
p = "";
}
memcpy(config.password, p, len); memcpy(config.password, p, len);
error_check(wifi_station_set_config(&config), "Cannot set STA config"); error_check(wifi_station_set_config(&config), "Cannot set STA config");
}
error_check(wifi_station_connect(), "Cannot connect to AP"); error_check(wifi_station_connect(), "Cannot connect to AP");
return mp_const_none; return mp_const_none;
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(esp_connect_obj, 3, 7, esp_connect); STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(esp_connect_obj, 1, 7, esp_connect);
STATIC mp_obj_t esp_disconnect(mp_obj_t self_in) { STATIC mp_obj_t esp_disconnect(mp_obj_t self_in) {
require_if(self_in, STATION_IF); require_if(self_in, STATION_IF);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment