Home
last modified time | relevance | path

Searched refs:esp_eth_handle_t (Results 1 – 16 of 16) sorted by relevance

/hal_espressif-3.4.0/components/esp_eth/include/
Desp_eth.h28 typedef void *esp_eth_handle_t; typedef
65 …esp_err_t (*stack_input)(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t length, void *priv…
76 esp_err_t (*on_lowlevel_init_done)(esp_eth_handle_t eth_handle);
87 esp_err_t (*on_lowlevel_deinit_done)(esp_eth_handle_t eth_handle);
108 …esp_err_t (*read_phy_reg)(esp_eth_handle_t eth_handle, uint32_t phy_addr, uint32_t phy_reg, uint32…
129 …esp_err_t (*write_phy_reg)(esp_eth_handle_t eth_handle, uint32_t phy_addr, uint32_t phy_reg, uint3…
160 esp_err_t esp_eth_driver_install(const esp_eth_config_t *config, esp_eth_handle_t *out_hdl);
176 esp_err_t esp_eth_driver_uninstall(esp_eth_handle_t hdl);
191 esp_err_t esp_eth_start(esp_eth_handle_t hdl);
205 esp_err_t esp_eth_stop(esp_eth_handle_t hdl);
[all …]
Desp_eth_netif_glue.h35 esp_eth_netif_glue_handle_t esp_eth_new_netif_glue(esp_eth_handle_t eth_hdl);
/hal_espressif-3.4.0/components/esp_eth/src/
Desp_eth_netif_glue.c28 esp_eth_handle_t eth_driver;
38 static esp_err_t eth_input_to_netif(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t length, … in eth_input_to_netif()
126 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_action_start()
128 …art: %p, %p, %d, %p, %p", netif_glue, base, event_id, event_data, *(esp_eth_handle_t *)event_data); in eth_action_start()
136 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_action_stop()
138 …top: %p, %p, %d, %p, %p", netif_glue, base, event_id, event_data, *(esp_eth_handle_t *)event_data); in eth_action_stop()
146 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_action_connected()
148 …ted: %p, %p, %d, %p, %p", netif_glue, base, event_id, event_data, *(esp_eth_handle_t *)event_data); in eth_action_connected()
156 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_action_disconnected()
158 …ted: %p, %p, %d, %p, %p", netif_glue, base, event_id, event_data, *(esp_eth_handle_t *)event_data); in eth_action_disconnected()
[all …]
Desp_eth.c50 …esp_err_t (*stack_input)(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t length, void *priv…
51 esp_err_t (*on_lowlevel_init_done)(esp_eth_handle_t eth_handle);
52 esp_err_t (*on_lowlevel_deinit_done)(esp_eth_handle_t eth_handle);
53 …esp_err_t (*customized_read_phy_reg)(esp_eth_handle_t eth_handle, uint32_t phy_addr, uint32_t phy_…
54 …esp_err_t (*customized_write_phy_reg)(esp_eth_handle_t eth_handle, uint32_t phy_addr, uint32_t phy…
94 … return eth_driver->stack_input((esp_eth_handle_t)eth_driver, buffer, length, eth_driver->priv); in eth_stack_input()
170 esp_err_t esp_eth_driver_install(const esp_eth_config_t *config, esp_eth_handle_t *out_hdl) in esp_eth_driver_install()
236 esp_err_t esp_eth_driver_uninstall(esp_eth_handle_t hdl) in esp_eth_driver_uninstall()
259 esp_err_t esp_eth_start(esp_eth_handle_t hdl) in esp_eth_start()
279 esp_err_t esp_eth_stop(esp_eth_handle_t hdl) in esp_eth_stop()
[all …]
/hal_espressif-3.4.0/components/esp_eth/test_apps/main/
Desp_eth_test.c65esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
116esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
169esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
201 esp_err_t l2_packet_txrx_test_cb(esp_eth_handle_t hdl, uint8_t *buffer, uint32_t length, void *priv… in l2_packet_txrx_test_cb()
241esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
296 esp_err_t eth_recv_cb(esp_eth_handle_t hdl, uint8_t *buffer, uint32_t length, void *priv) in eth_recv_cb()
335esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
/hal_espressif-3.4.0/examples/ethernet/enc28j60/main/
Denc28j60_example_main.c30 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_event_handler()
114 esp_eth_handle_t eth_handle = NULL; in app_main()
/hal_espressif-3.4.0/components/esp_eth/test/
Dtest_emac.c80 static esp_err_t test_uninstall_driver(esp_eth_handle_t eth_hdl, uint32_t ms_to_wait) in test_uninstall_driver()
107 esp_eth_handle_t eth_handle = NULL;
138 esp_eth_handle_t eth_handle = NULL;
178 esp_eth_handle_t eth_handle = NULL;
225 esp_eth_handle_t eth_handle = NULL;
323 esp_eth_handle_t eth_handle = NULL;
/hal_espressif-3.4.0/examples/ethernet/basic/main/
Dethernet_example_main.c48 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_event_handler()
121 esp_eth_handle_t eth_handle = NULL; in app_main()
176 esp_eth_handle_t eth_handle_spi[CONFIG_EXAMPLE_SPI_ETHERNETS_NUM] = { NULL }; in app_main()
/hal_espressif-3.4.0/examples/network/simple_sniffer/main/
Dsimple_sniffer_example_main.c101 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data; in eth_event_handler()
212 esp_eth_handle_t eth_handle = NULL; in initialize_eth()
Dcmd_sniffer.h41 esp_err_t sniffer_reg_eth_intf(esp_eth_handle_t eth_handle);
Dcmd_sniffer.c51 esp_eth_handle_t eth_handles[SNIFFER_MAX_ETH_INTFS];
150 static esp_err_t eth_sniffer_cb(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t length, void… in eth_sniffer_cb()
331 esp_err_t sniffer_reg_eth_intf(esp_eth_handle_t eth_handle) in sniffer_reg_eth_intf()
/hal_espressif-3.4.0/examples/ethernet/eth2ap/main/
Dethernet_example_main.c27 static esp_eth_handle_t s_eth_handle = NULL;
57 static esp_err_t pkt_eth2wifi(esp_eth_handle_t eth_handle, uint8_t *buffer, uint32_t len, void *pri… in pkt_eth2wifi()
/hal_espressif-3.4.0/components/lwip/port/esp32/netif/
Dethernetif.c201 esp_eth_handle_t eth_handle = esp_netif_get_io_driver(esp_netif); in ethernetif_init()
/hal_espressif-3.4.0/examples/ethernet/iperf/main/
Dcmd_ethernet.c33 static esp_eth_handle_t eth_handle = NULL;
/hal_espressif-3.4.0/examples/common_components/protocol_examples_common/
Dconnect.c355 static esp_eth_handle_t s_eth_handle = NULL;
/hal_espressif-3.4.0/docs/en/api-reference/network/
Desp_eth.rst297esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver
312 esp_eth_handle_t eth_handle = *(esp_eth_handle_t *)event_data;