From bd9c48acdbb26dc2fd9aa04dd17253d25cad0263 Mon Sep 17 00:00:00 2001 From: muhaidong Date: Thu, 20 Apr 2023 11:26:05 +0800 Subject: [PATCH] esp_wifi: fix some wifi bugs 230420 1. fix softap qos null issue 2. fix set inactive time crash issue --- components/esp_wifi/include/esp_wifi.h | 1 + components/esp_wifi/lib | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/esp_wifi/include/esp_wifi.h b/components/esp_wifi/include/esp_wifi.h index 974bf84b1d..84c92c29bc 100644 --- a/components/esp_wifi/include/esp_wifi.h +++ b/components/esp_wifi/include/esp_wifi.h @@ -1148,6 +1148,7 @@ esp_err_t esp_wifi_set_inactive_time(wifi_interface_t ifx, uint16_t sec); * @return * - ESP_OK: succeed * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init + * - ESP_ERR_WIFI_NOT_STARTED: WiFi is not started by esp_wifi_start * - ESP_ERR_WIFI_ARG: invalid argument */ esp_err_t esp_wifi_get_inactive_time(wifi_interface_t ifx, uint16_t *sec); diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index 241e9358c2..f123088541 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit 241e9358c2ac2dd6de2179e2655232c29383391a +Subproject commit f12308854151bb05189bc8352f4fb7f45f5d5306