mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-23 01:58:24 +08:00
feat(wifi): Add set/get wifi autoconnect APIs
This commit is contained in:
@ -699,6 +699,32 @@ esp_err_t esp_wifi_ap_get_sta_list(wifi_sta_list_t *sta);
|
|||||||
*/
|
*/
|
||||||
esp_err_t esp_wifi_set_storage(wifi_storage_t storage);
|
esp_err_t esp_wifi_set_storage(wifi_storage_t storage);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Set auto connect
|
||||||
|
* The default value is true
|
||||||
|
*
|
||||||
|
* @param en : true - enable auto connect / false - disable auto connect
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* - ESP_OK: succeed
|
||||||
|
* - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
|
||||||
|
* - ESP_ERR_WIFI_MODE: WiFi internal error, the station/soft-AP control block is invalid
|
||||||
|
* - others: refer to error code in esp_err.h
|
||||||
|
*/
|
||||||
|
esp_err_t esp_wifi_set_auto_connect(bool en) __attribute__ ((deprecated));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Get the auto connect flag
|
||||||
|
*
|
||||||
|
* @param[out] en store current auto connect configuration
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* - ESP_OK: succeed
|
||||||
|
* - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
|
||||||
|
* - ESP_ERR_INVALID_ARG: invalid argument
|
||||||
|
*/
|
||||||
|
esp_err_t esp_wifi_get_auto_connect(bool *en) __attribute__ ((deprecated));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set 802.11 Vendor-Specific Information Element
|
* @brief Set 802.11 Vendor-Specific Information Element
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user