kopia lustrzana https://github.com/espressif/esp-idf
esp_wifi: support connectionless manually pwr mgmt
rodzic
c6db306833
commit
1314a9f8cf
|
@ -1271,6 +1271,32 @@ esp_err_t esp_wifi_config_11b_rate(wifi_interface_t ifx, bool disable);
|
|||
*/
|
||||
esp_err_t esp_wifi_connectionless_module_set_wake_interval(uint16_t wake_interval);
|
||||
|
||||
/**
|
||||
* @brief Request extra reference of Wi-Fi radio.
|
||||
* Wi-Fi keep active state(RF opened) to be able to receive packets.
|
||||
*
|
||||
* @attention Please pair the use of `esp_wifi_force_wakeup_acquire` with `esp_wifi_force_wakeup_release`.
|
||||
*
|
||||
* @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_t esp_wifi_force_wakeup_acquire(void);
|
||||
|
||||
/**
|
||||
* @brief Release extra reference of Wi-Fi radio.
|
||||
* Wi-Fi go to sleep state(RF closed) if no more use of radio.
|
||||
*
|
||||
* @attention Please pair the use of `esp_wifi_force_wakeup_acquire` with `esp_wifi_force_wakeup_release`.
|
||||
*
|
||||
* @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_t esp_wifi_force_wakeup_release(void);
|
||||
|
||||
/**
|
||||
* @brief configure country
|
||||
*
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit b74ee0160632978f0e36763f55be0ea6ee18f0c8
|
||||
Subproject commit d5352da6c4f6e5d460a8f5af957b4e47420e7782
|
Ładowanie…
Reference in New Issue