mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
30 lines
545 B
C
30 lines
545 B
C
/*
|
|
* 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, /**< ESP32 station interface */
|
|
ESP_IF_WIFI_AP, /**< ESP32 soft-AP interface */
|
|
ESP_IF_ETH, /**< ESP32 ethernet interface */
|
|
ESP_IF_MAX
|
|
} esp_interface_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* __ESP_INTERFACE_TYPES_H__ */
|