Merge branch 'feat/add_some_scan_feature_and_fix' into 'master'

feat(wifi): add scan max ap num config and log

Closes WIFI-7035 and WIFI-7428

See merge request espressif/esp-idf!51111
This commit is contained in:
Jiang Jiang Jian
2026-09-20 20:38:25 +08:00
3 changed files with 3 additions and 1 deletions

View File

@@ -258,6 +258,7 @@ typedef struct {
Please note that the 'channel' parameter above needs to be set to 0 to allow scanning by bitmap.
Also, note that only allowed channels configured by wifi_country_t can be scanned. */
bool coex_background_scan; /**< Enable it to scan return home channel under coexist */
uint8_t max_scan_ap_num; /**< Max AP records to keep during the scan, sorted by RSSI. 0 means no limit. */
} wifi_scan_config_t;
/**

View File

@@ -258,6 +258,7 @@ typedef struct {
Please note that the 'channel' parameter above needs to be set to 0 to allow scanning by bitmap.
Also, note that only allowed channels configured by wifi_country_t can be scanned. */
bool coex_background_scan; /**< Enable it to scan return home channel under coexist */
uint8_t max_scan_ap_num; /**< Max AP records to keep during the scan, sorted by RSSI. 0 means no limit. */
} wifi_scan_config_t;
/**