esp8266/modnetwork: .config(): Add "password" param (W/O).
This commit is contained in:
parent
7acc252e93
commit
54b89665fc
|
@ -264,6 +264,15 @@ STATIC mp_obj_t esp_config(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs
|
|||
cfg.ap.authmode = mp_obj_get_int(kwargs->table[i].value);
|
||||
break;
|
||||
}
|
||||
case QS(MP_QSTR_password): {
|
||||
req_if = SOFTAP_IF;
|
||||
mp_uint_t len;
|
||||
const char *s = mp_obj_str_get_data(kwargs->table[i].value, &len);
|
||||
len = MIN(len, sizeof(cfg.ap.password) - 1);
|
||||
memcpy(cfg.ap.password, s, len);
|
||||
cfg.ap.password[len] = 0;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
goto unknown;
|
||||
}
|
||||
|
|
|
@ -126,6 +126,7 @@ Q(AUTH_WPA_WPA2_PSK)
|
|||
// config keys
|
||||
Q(essid)
|
||||
Q(authmode)
|
||||
Q(password)
|
||||
|
||||
// Pin class
|
||||
Q(Pin)
|
||||
|
|
Loading…
Reference in New Issue