Merge branch 'fix/fix_max_idle_priod_issue_v53' into 'release/v5.3'

fix(wifi): fix max idle period 1 issue

See merge request espressif/esp-idf!37309
This commit is contained in:
Jiang Jiang Jian
2025-02-28 10:41:03 +08:00
4 changed files with 4 additions and 4 deletions

View File

@ -118,7 +118,7 @@ pm_local_tsf_process = 0x40000d68;
pm_set_beacon_filter = 0x40000d6c;
pm_is_in_wifi_slice_threshold = 0x40000d70;
pm_is_waked = 0x40000d74;
pm_keep_alive = 0x40000d78;
//pm_keep_alive = 0x40000d78;
/*pm_on_beacon_rx = 0x40000d7c;*/
pm_on_data_rx = 0x40000d80;
pm_on_data_tx = 0x40000d84;

View File

@ -67,7 +67,7 @@ pm_local_tsf_process = 0x40000bac;
pm_set_beacon_filter = 0x40000bb0;
pm_is_in_wifi_slice_threshold = 0x40000bb4;
pm_is_waked = 0x40000bb8;
pm_keep_alive = 0x40000bbc;
//pm_keep_alive = 0x40000bbc;
pm_on_beacon_rx = 0x40000bc0;
pm_on_data_rx = 0x40000bc4;
pm_on_tbtt = 0x40000bc8;

View File

@ -583,7 +583,7 @@ esp_err_t esp_wifi_scan_stop(void);
esp_err_t esp_wifi_scan_get_ap_num(uint16_t *number);
/**
* @brief Get AP list found in last scan.
* @brief Retrieve the list of APs found during the last scan. The returned AP list is sorted in descending order based on RSSI.
*
* @attention This API will free all memory occupied by scanned AP list.
*