mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
Merge branch 'bugfix/fix_wifi_bugs_20211206_v4.1' into 'release/v4.1'
esp_wifi: fix wifi bugs 20211206 (Backport v4.1) See merge request espressif/esp-idf!16271
This commit is contained in:
@ -52,6 +52,9 @@ static system_event_id_t esp_event_legacy_wifi_event_id(int32_t event_id)
|
|||||||
case WIFI_EVENT_STA_AUTHMODE_CHANGE:
|
case WIFI_EVENT_STA_AUTHMODE_CHANGE:
|
||||||
return SYSTEM_EVENT_STA_AUTHMODE_CHANGE;
|
return SYSTEM_EVENT_STA_AUTHMODE_CHANGE;
|
||||||
|
|
||||||
|
case WIFI_EVENT_STA_BEACON_TIMEOUT:
|
||||||
|
return SYSTEM_EVENT_STA_BEACON_TIMEOUT;
|
||||||
|
|
||||||
case WIFI_EVENT_STA_WPS_ER_SUCCESS:
|
case WIFI_EVENT_STA_WPS_ER_SUCCESS:
|
||||||
return SYSTEM_EVENT_STA_WPS_ER_SUCCESS;
|
return SYSTEM_EVENT_STA_WPS_ER_SUCCESS;
|
||||||
|
|
||||||
|
@ -36,6 +36,7 @@ typedef enum {
|
|||||||
SYSTEM_EVENT_STA_AUTHMODE_CHANGE, /*!< the auth mode of AP connected by ESP32 station changed */
|
SYSTEM_EVENT_STA_AUTHMODE_CHANGE, /*!< the auth mode of AP connected by ESP32 station changed */
|
||||||
SYSTEM_EVENT_STA_GOT_IP, /*!< ESP32 station got IP from connected AP */
|
SYSTEM_EVENT_STA_GOT_IP, /*!< ESP32 station got IP from connected AP */
|
||||||
SYSTEM_EVENT_STA_LOST_IP, /*!< ESP32 station lost IP and the IP is reset to 0 */
|
SYSTEM_EVENT_STA_LOST_IP, /*!< ESP32 station lost IP and the IP is reset to 0 */
|
||||||
|
SYSTEM_EVENT_STA_BEACON_TIMEOUT, /*!< ESP32 station beacon timeout */
|
||||||
SYSTEM_EVENT_STA_WPS_ER_SUCCESS, /*!< ESP32 station wps succeeds in enrollee mode */
|
SYSTEM_EVENT_STA_WPS_ER_SUCCESS, /*!< ESP32 station wps succeeds in enrollee mode */
|
||||||
SYSTEM_EVENT_STA_WPS_ER_FAILED, /*!< ESP32 station wps fails in enrollee mode */
|
SYSTEM_EVENT_STA_WPS_ER_FAILED, /*!< ESP32 station wps fails in enrollee mode */
|
||||||
SYSTEM_EVENT_STA_WPS_ER_TIMEOUT, /*!< ESP32 station wps timeout in enrollee mode */
|
SYSTEM_EVENT_STA_WPS_ER_TIMEOUT, /*!< ESP32 station wps timeout in enrollee mode */
|
||||||
|
@ -508,6 +508,7 @@ typedef enum {
|
|||||||
WIFI_EVENT_STA_CONNECTED, /**< ESP32 station connected to AP */
|
WIFI_EVENT_STA_CONNECTED, /**< ESP32 station connected to AP */
|
||||||
WIFI_EVENT_STA_DISCONNECTED, /**< ESP32 station disconnected from AP */
|
WIFI_EVENT_STA_DISCONNECTED, /**< ESP32 station disconnected from AP */
|
||||||
WIFI_EVENT_STA_AUTHMODE_CHANGE, /**< the auth mode of AP connected by ESP32 station changed */
|
WIFI_EVENT_STA_AUTHMODE_CHANGE, /**< the auth mode of AP connected by ESP32 station changed */
|
||||||
|
WIFI_EVENT_STA_BEACON_TIMEOUT, /**< ESP32 station beacon timeout */
|
||||||
|
|
||||||
WIFI_EVENT_STA_WPS_ER_SUCCESS, /**< ESP32 station wps succeeds in enrollee mode */
|
WIFI_EVENT_STA_WPS_ER_SUCCESS, /**< ESP32 station wps succeeds in enrollee mode */
|
||||||
WIFI_EVENT_STA_WPS_ER_FAILED, /**< ESP32 station wps fails in enrollee mode */
|
WIFI_EVENT_STA_WPS_ER_FAILED, /**< ESP32 station wps fails in enrollee mode */
|
||||||
|
Submodule components/esp_wifi/lib updated: fd372a8b7e...06476afc57
Reference in New Issue
Block a user