cb42c29252
1. move resource allocation from xxx_init to xxx_new 2. fix enabling tx checksum insertion by mistake 3. iperf example: enlarge max arguments 4. add examples for spi-ethernet Closes https://github.com/espressif/esp-idf/issues/3715 Closes https://github.com/espressif/esp-idf/issues/3711
14 lines
339 B
Makefile
14 lines
339 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_SRCDIRS := src
|
|
COMPONENT_ADD_LDFRAGMENTS += linker.lf
|
|
|
|
ifndef CONFIG_IDF_TARGET_ESP32
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_esp32.o
|
|
endif
|
|
|
|
ifndef CONFIG_ETH_SPI_ETHERNET_DM9051
|
|
COMPONENT_OBJEXCLUDE += src/esp_eth_mac_dm9051.o src/esp_eth_phy_dm9051.o
|
|
endif
|