Home
last modified time | relevance | path

Searched refs:eth_netif (Results 1 – 7 of 7) sorted by relevance

/hal_espressif-3.4.0/components/esp_eth/test/
Dtest_emac.c171 esp_netif_t *eth_netif = esp_netif_new(&netif_cfg); variable
183 TEST_ESP_OK(esp_netif_attach(eth_netif, glue));
204 esp_netif_destroy(eth_netif);
218 esp_netif_t *eth_netif = esp_netif_new(&netif_cfg); variable
230 TEST_ESP_OK(esp_netif_attach(eth_netif, glue));
255 esp_netif_destroy(eth_netif);
316 esp_netif_t *eth_netif = esp_netif_new(&netif_cfg); variable
328 TEST_ESP_OK(esp_netif_attach(eth_netif, glue));
364 esp_netif_destroy(eth_netif);
/hal_espressif-3.4.0/examples/ethernet/iperf/main/
Dcmd_ethernet.c34 static esp_netif_t *eth_netif = NULL; variable
54 esp_netif_get_ip_info(eth_netif, &ip); in eth_cmd_control()
215 eth_netif = esp_netif_new(&cfg); in register_ethernet()
328 ESP_ERROR_CHECK(esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle))); in register_ethernet()
/hal_espressif-3.4.0/examples/ethernet/enc28j60/main/
Denc28j60_example_main.c76 esp_netif_t *eth_netif = esp_netif_new(&netif_cfg); in app_main() local
131 ESP_ERROR_CHECK(esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle))); in app_main()
/hal_espressif-3.4.0/examples/ethernet/basic/main/
Dethernet_example_main.c96 esp_netif_t *eth_netif = esp_netif_new(&cfg); in app_main() local
124 ESP_ERROR_CHECK(esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle))); in app_main()
/hal_espressif-3.4.0/components/tcpip_adapter/
Dtcpip_adapter_compat.c116 esp_netif_t *eth_netif = esp_netif_new(&cfg); in tcpip_adapter_set_default_eth_handlers() local
118 s_esp_netifs[TCPIP_ADAPTER_IF_ETH] = eth_netif; in tcpip_adapter_set_default_eth_handlers()
/hal_espressif-3.4.0/examples/common_components/protocol_examples_common/
Dconnect.c470 esp_netif_t *eth_netif = get_example_netif_from_desc("eth"); in eth_stop() local
482 esp_netif_destroy(eth_netif); in eth_stop()
/hal_espressif-3.4.0/docs/en/api-reference/network/
Desp_eth.rst386 esp_netif_t *eth_netif = esp_netif_new(&cfg); // create network interface for Ethernet driver
388 …esp_netif_attach(eth_netif, esp_eth_new_netif_glue(eth_handle)); // attach Ethernet driver to TCP/…