2019-04-10 08:24:50 +00:00
|
|
|
set(esp_eth_srcs "src/esp_eth.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")
|
|
|
|
|
2019-07-12 09:58:45 +00:00
|
|
|
if(CONFIG_ETH_USE_ESP32_EMAC)
|
2019-04-10 08:24:50 +00:00
|
|
|
list(APPEND esp_eth_srcs "src/esp_eth_mac_esp32.c")
|
|
|
|
endif()
|
|
|
|
|
2019-06-25 11:36:56 +00:00
|
|
|
if(CONFIG_ETH_SPI_ETHERNET_DM9051)
|
|
|
|
list(APPEND esp_eth_srcs "src/esp_eth_mac_dm9051.c"
|
|
|
|
"src/esp_eth_phy_dm9051.c")
|
|
|
|
endif()
|
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
idf_component_register(SRCS "${esp_eth_srcs}"
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
LDFRAGMENTS "linker.lf"
|
|
|
|
REQUIRES "esp_event"
|
|
|
|
PRIV_REQUIRES "tcpip_adapter" "driver" "log")
|