Merge branch 'bugfix/revert_refactor_wifi_interface_v3.3' into 'release/v3.3'

Revert "Refactor wifi_interface_t" (v3.3)

See merge request espressif/esp-idf!12483
This commit is contained in:
Jiang Jiang Jian 2021-03-15 03:26:08 +00:00
commit c43efe1502
3 changed files with 6 additions and 6 deletions

View File

@ -33,10 +33,10 @@ typedef enum {
WIFI_MODE_MAX
} wifi_mode_t;
typedef enum {
WIFI_IF_STA = ESP_IF_WIFI_STA,
WIFI_IF_AP = ESP_IF_WIFI_AP,
} wifi_interface_t;
typedef esp_interface_t wifi_interface_t;
#define WIFI_IF_STA ESP_IF_WIFI_STA
#define WIFI_IF_AP ESP_IF_WIFI_AP
typedef enum {
WIFI_COUNTRY_POLICY_AUTO, /**< Country policy is auto, use the country info of AP to which the station is connected */

@ -1 +1 @@
Subproject commit d518cc7e8b25fda6930129e166bcb490504a7f8e
Subproject commit b3c748ed8a2603f57a4ecda8cbf0405570586597

View File

@ -114,7 +114,7 @@ low_level_output(struct netif *netif, struct pbuf *p)
struct pbuf *q = p;
err_t ret;
if (wifi_if > WIFI_IF_AP) {
if (wifi_if >= ESP_IF_MAX) {
return ERR_IF;
}