feat(wifi): add scan max ap num config

This commit is contained in:
wangtao@espressif.com
2026-09-20 17:10:59 +08:00
parent 04cbfc2242
commit 28de02bba2
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;
/**