mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
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:
@ -118,7 +118,7 @@ pm_local_tsf_process = 0x40000d68;
|
|||||||
pm_set_beacon_filter = 0x40000d6c;
|
pm_set_beacon_filter = 0x40000d6c;
|
||||||
pm_is_in_wifi_slice_threshold = 0x40000d70;
|
pm_is_in_wifi_slice_threshold = 0x40000d70;
|
||||||
pm_is_waked = 0x40000d74;
|
pm_is_waked = 0x40000d74;
|
||||||
pm_keep_alive = 0x40000d78;
|
//pm_keep_alive = 0x40000d78;
|
||||||
/*pm_on_beacon_rx = 0x40000d7c;*/
|
/*pm_on_beacon_rx = 0x40000d7c;*/
|
||||||
pm_on_data_rx = 0x40000d80;
|
pm_on_data_rx = 0x40000d80;
|
||||||
pm_on_data_tx = 0x40000d84;
|
pm_on_data_tx = 0x40000d84;
|
||||||
|
@ -67,7 +67,7 @@ pm_local_tsf_process = 0x40000bac;
|
|||||||
pm_set_beacon_filter = 0x40000bb0;
|
pm_set_beacon_filter = 0x40000bb0;
|
||||||
pm_is_in_wifi_slice_threshold = 0x40000bb4;
|
pm_is_in_wifi_slice_threshold = 0x40000bb4;
|
||||||
pm_is_waked = 0x40000bb8;
|
pm_is_waked = 0x40000bb8;
|
||||||
pm_keep_alive = 0x40000bbc;
|
//pm_keep_alive = 0x40000bbc;
|
||||||
pm_on_beacon_rx = 0x40000bc0;
|
pm_on_beacon_rx = 0x40000bc0;
|
||||||
pm_on_data_rx = 0x40000bc4;
|
pm_on_data_rx = 0x40000bc4;
|
||||||
pm_on_tbtt = 0x40000bc8;
|
pm_on_tbtt = 0x40000bc8;
|
||||||
|
@ -583,7 +583,7 @@ esp_err_t esp_wifi_scan_stop(void);
|
|||||||
esp_err_t esp_wifi_scan_get_ap_num(uint16_t *number);
|
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.
|
* @attention This API will free all memory occupied by scanned AP list.
|
||||||
*
|
*
|
||||||
|
Submodule components/esp_wifi/lib updated: fd857ec9e1...7b7ca286d8
Reference in New Issue
Block a user