From f59bf740575c4a06f120def71f160fa17fbe8c96 Mon Sep 17 00:00:00 2001 From: Liu Zhi Fu Date: Tue, 16 May 2017 17:01:42 +0800 Subject: [PATCH] esp32: minor fix for wifi api comments Minor fix about the comments of wifi_promiscuous_pkt_type_t --- components/esp32/include/esp_wifi_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/include/esp_wifi_types.h b/components/esp32/include/esp_wifi_types.h index 7dd2ee4ef..02b8563a6 100755 --- a/components/esp32/include/esp_wifi_types.h +++ b/components/esp32/include/esp_wifi_types.h @@ -246,7 +246,7 @@ typedef struct { * */ typedef enum { - WIFI_PKT_CTRL, /**< control type, receive packet buf is wifi_pkt_rx_ctrl_t */ + WIFI_PKT_CTRL, /**< control type, receive packet buf is wifi_promiscuous_pkt_t */ WIFI_PKT_MGMT, /**< management type, receive packet buf is wifi_promiscuous_pkt_t */ WIFI_PKT_DATA, /**< data type, receive packet buf is wifi_promiscuous_pkt_t */ WIFI_PKT_MISC, /**< other type, receive packet buf is wifi_promiscuous_pkt_t */