Select one of the symbols to view example projects that use it.
 
Outline
#define __ESP_INTERFACE_H__
#include <stdint.h>
esp_interface_t
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/esp_interface.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __ESP_INTERFACE_H__ #define __ESP_INTERFACE_H__ #include <stdint.h> #ifdef __cplusplus extern "C" { #endif typedef enum { ESP_IF_WIFI_STA = 0, /**< Station interface */ ESP_IF_WIFI_AP, /**< Soft-AP interface */ ESP_IF_WIFI_NAN, /**< NAN interface */ ESP_IF_ETH, /**< Ethernet interface */ ESP_IF_MAX }{ ... } esp_interface_t; #ifdef __cplusplus }{...} #endif /* ... */ #endif /* __ESP_INTERFACE_TYPES_H__ */
Details
Show:
from
Types: Columns: