esp_eth: moved extern "C" after includes

This commit is contained in:
Jakob Hasse 2020-09-08 17:39:56 +08:00
parent ba55320e1e
commit f7f46905ec
6 changed files with 19 additions and 19 deletions

View File

@ -13,14 +13,14 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "esp_eth_com.h" #include "esp_eth_com.h"
#include "esp_eth_mac.h" #include "esp_eth_mac.h"
#include "esp_eth_phy.h" #include "esp_eth_phy.h"
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* @brief Handle of Ethernet driver * @brief Handle of Ethernet driver
* *

View File

@ -13,13 +13,13 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#include "esp_err.h"
#include "esp_event_base.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#include "esp_err.h"
#include "esp_event_base.h"
/** /**
* @brief Maximum Ethernet payload size * @brief Maximum Ethernet payload size
* *

View File

@ -13,10 +13,6 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h> #include <stdbool.h>
#include "esp_eth_com.h" #include "esp_eth_com.h"
#include "sdkconfig.h" #include "sdkconfig.h"
@ -24,6 +20,10 @@ extern "C" {
#include "driver/spi_master.h" #include "driver/spi_master.h"
#endif #endif
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* @brief Ethernet MAC * @brief Ethernet MAC
* *

View File

@ -13,12 +13,12 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#include "esp_eth.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#include "esp_eth.h"
/** /**
* @brief Create a netif glue for Ethernet driver * @brief Create a netif glue for Ethernet driver
* @note netif glue is used to attach io driver to TCP/IP netif * @note netif glue is used to attach io driver to TCP/IP netif

View File

@ -13,14 +13,14 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h> #include <stdbool.h>
#include "esp_eth_com.h" #include "esp_eth_com.h"
#include "sdkconfig.h" #include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
#define ESP_ETH_PHY_ADDR_AUTO (-1) #define ESP_ETH_PHY_ADDR_AUTO (-1)
/** /**

View File

@ -13,12 +13,12 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#include <stdint.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#include <stdint.h>
/******************Basic PHY Registers*******************/ /******************Basic PHY Registers*******************/
/** /**