esp8266: esp_connect(): The function is now vararg.

Fixes regression from a previous commit.
This commit is contained in:
Paul Sokolovsky 2015-06-12 14:25:33 +03:00
parent a19ba5fea0
commit 431603ad69

View File

@ -549,7 +549,7 @@ STATIC mp_obj_t esp_connect(mp_uint_t n_args, const mp_obj_t *args) {
return mp_const_none; return mp_const_none;
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_2(esp_connect_obj, esp_connect); STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(esp_connect_obj, 2, 6, esp_connect);
STATIC mp_obj_t esp_disconnect() { STATIC mp_obj_t esp_disconnect() {
error_check(wifi_station_disconnect(), "Cannot disconnect from AP"); error_check(wifi_station_disconnect(), "Cannot disconnect from AP");