You are using staging server - a separate instance of the ESP Component Registry that allows you to try distribution tools and processes without affecting the real registry.
# Component for Ethernet Initialization This component initializes Ethernet driver based on Espressif IoT Development Framework Configuration. ## API ### Steps to enable console in an example code: 1. Add this component to your project using ```idf.py add-dependency``` command. 2. In the main file of the example, add the following line: ```c #include "ethernet_init.h" ``` 3. In your app_main() function, add the following line: ```c // Initialize ethernet esp_err_t ethernet_init_all(esp_eth_handle_t *eth_handles_out[], uint8_t *eth_cnt_out); // Deinitialize ethernet void ethernet_deinit_all(esp_eth_handle_t *eth_handles[]); // Get the device type of the ethernet handle eth_dev_type ethernet_init_get_dev_type(esp_eth_handle_t *eth_handle); ```
idf.py add-dependency "espressif/ethernet_init^0.0.6"