From 601982ccad926a858dc2c08640439f15d57b9843 Mon Sep 17 00:00:00 2001 From: xueyunfei Date: Mon, 8 Aug 2022 14:28:07 +0800 Subject: [PATCH 1/2] esp_wifi:add clear ap list interface --- components/esp_wifi/include/esp_wifi.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/esp_wifi/include/esp_wifi.h b/components/esp_wifi/include/esp_wifi.h index c58ee53fe6..41879009a3 100644 --- a/components/esp_wifi/include/esp_wifi.h +++ b/components/esp_wifi/include/esp_wifi.h @@ -453,6 +453,21 @@ esp_err_t esp_wifi_scan_get_ap_num(uint16_t *number); esp_err_t esp_wifi_scan_get_ap_records(uint16_t *number, wifi_ap_record_t *ap_records); +/** + * @brief Clear AP list found in last scan + * + * @attention When the obtained ap list fails,bss info must be cleared,otherwise it may cause memory leakage. + * + * @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_MODE: WiFi mode is wrong + * - ESP_ERR_INVALID_ARG: invalid argument + */ +esp_err_t esp_wifi_clear_ap_list(void); + + /** * @brief Get information of AP which the ESP32 station is associated with * From b9a0a3d5c4cefe76449e96ed4db43cd0e328e949 Mon Sep 17 00:00:00 2001 From: xueyunfei Date: Wed, 17 Aug 2022 15:43:34 +0800 Subject: [PATCH 2/2] esp_wifi:fix some wifi bugs 1 esp32c2: mv multiphy api out of ESP_MESH_SUPPORT macro 2 clear bss info when wifi stop 3 add clear ap list interface --- components/esp_wifi/lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index cf381efc7e..845af059ec 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit cf381efc7ebd3c607fd9ab00599bb71c95fcc305 +Subproject commit 845af059ecbb64cb175df20cd6e61d956fdf2a66