mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 19:24:33 +02:00
esp_wifi: Update wifi lib
Update wifi lib with below fixes - 1. In FTM Responder, add session timer for cleanup, also remove unnecessary mutex locks 2. In FTM Responder, fix incorrect print in case of failure while setting up the SofTAP 2. In FTM Initiator, increase FTM Request response timeout to avoid failures in noisy environments 3. In FTM Initiator, abort for high start delta time, also fix timeout issue in ASAP mode
This commit is contained in:
Submodule components/esp_wifi/lib updated: bba5f9116d...4c9f657748
@@ -317,7 +317,7 @@ static bool wifi_cmd_ap_set(const char* ssid, const char* pass)
|
||||
if (pass) {
|
||||
if (strlen(pass) != 0 && strlen(pass) < 8) {
|
||||
s_reconnect = true;
|
||||
ESP_LOGE(TAG_AP, "password less than 8");
|
||||
ESP_LOGE(TAG_AP, "password cannot be less than 8 characters long");
|
||||
return false;
|
||||
}
|
||||
strlcpy((char*) g_ap_config.ap.password, pass, MAX_PASSPHRASE_LEN);
|
||||
@@ -341,8 +341,11 @@ static int wifi_cmd_ap(int argc, char** argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
wifi_cmd_ap_set(ap_args.ssid->sval[0], ap_args.password->sval[0]);
|
||||
ESP_LOGI(TAG_AP, "Starting SoftAP with FTM Responder support, SSID - %s, Password - %s", ap_args.ssid->sval[0], ap_args.password->sval[0]);
|
||||
if (true == wifi_cmd_ap_set(ap_args.ssid->sval[0], ap_args.password->sval[0]))
|
||||
ESP_LOGI(TAG_AP, "Starting SoftAP with FTM Responder support, SSID - %s, Password - %s", ap_args.ssid->sval[0], ap_args.password->sval[0]);
|
||||
else
|
||||
ESP_LOGE(TAG_AP, "Failed to start SoftAP!");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user