/hal_espressif-3.4.0/components/esp_eth/include/ |
D | esp_eth.h | 28 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 …]
|
D | esp_eth_netif_glue.h | 35 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/ |
D | esp_eth_netif_glue.c | 28 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 …]
|
D | esp_eth.c | 50 …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/ |
D | esp_eth_test.c | 65 …esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver 116 …esp_eth_handle_t eth_handle = NULL; // after driver installed, we will get the handle of the driver 169 …esp_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() 241 …esp_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() 335 …esp_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/ |
D | enc28j60_example_main.c | 30 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/ |
D | test_emac.c | 80 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/ |
D | ethernet_example_main.c | 48 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/ |
D | simple_sniffer_example_main.c | 101 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()
|
D | cmd_sniffer.h | 41 esp_err_t sniffer_reg_eth_intf(esp_eth_handle_t eth_handle);
|
D | cmd_sniffer.c | 51 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/ |
D | ethernet_example_main.c | 27 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/ |
D | ethernetif.c | 201 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/ |
D | cmd_ethernet.c | 33 static esp_eth_handle_t eth_handle = NULL;
|
/hal_espressif-3.4.0/examples/common_components/protocol_examples_common/ |
D | connect.c | 355 static esp_eth_handle_t s_eth_handle = NULL;
|
/hal_espressif-3.4.0/docs/en/api-reference/network/ |
D | esp_eth.rst | 297 …esp_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;
|