mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
- provides object oriented access to network intefaces - not limited to default netifs - more generic abstraction to network input output functions - event handler registration removed from component responsibility - backward compatibility layer for legacy tcpip_apapter APIs Closes IDF-39
9 lines
422 B
CMake
9 lines
422 B
CMake
idf_component_register(SRCS "esp_netif_handlers.c"
|
|
"esp_netif_objects.c"
|
|
"esp_netif_defaults.c"
|
|
"lwip/esp_netif_lwip.c"
|
|
"lwip/esp_netif_lwip_defaults.c"
|
|
INCLUDE_DIRS include
|
|
PRIV_INCLUDE_DIRS lwip private_include
|
|
REQUIRES lwip esp_eth tcpip_adapter)
|