mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
31 lines
938 B
CMake
31 lines
938 B
CMake
set(srcs)
|
|
set(include)
|
|
|
|
# If Ethernet disabled in Kconfig, this is a config-only component
|
|
if(CONFIG_ETH_ENABLED)
|
|
set(srcs "src/esp_eth.c")
|
|
set(include "include")
|
|
|
|
if(CONFIG_ETH_USE_ESP32_EMAC)
|
|
list(APPEND srcs "src/esp_eth_mac_esp32.c"
|
|
"src/esp_eth_phy_dp83848.c"
|
|
"src/esp_eth_phy_ip101.c"
|
|
"src/esp_eth_phy_lan8720.c"
|
|
"src/esp_eth_phy_rtl8201.c")
|
|
endif()
|
|
|
|
if(CONFIG_ETH_SPI_ETHERNET_DM9051)
|
|
list(APPEND srcs "src/esp_eth_mac_dm9051.c"
|
|
"src/esp_eth_phy_dm9051.c")
|
|
endif()
|
|
|
|
if(CONFIG_ETH_USE_OPENETH)
|
|
list(APPEND srcs "src/esp_eth_mac_openeth.c")
|
|
endif()
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS ${include}
|
|
REQUIRES "esp_event"
|
|
PRIV_REQUIRES "esp_netif" "driver" "log")
|