11 #include "esp_eth_mac.h" 12 #include "esp_netif.h" 54 void setup()
override;
56 void dump_config()
override;
57 float get_setup_priority()
const override;
58 bool can_proceed()
override;
62 #ifdef USE_ETHERNET_SPI 63 void set_clk_pin(uint8_t clk_pin);
64 void set_miso_pin(uint8_t miso_pin);
65 void set_mosi_pin(uint8_t mosi_pin);
66 void set_cs_pin(uint8_t cs_pin);
67 void set_interrupt_pin(uint8_t interrupt_pin);
68 void set_reset_pin(uint8_t reset_pin);
69 void set_clock_speed(
int clock_speed);
71 void set_phy_addr(uint8_t phy_addr);
72 void set_power_pin(
int power_pin);
73 void set_mdc_pin(uint8_t mdc_pin);
74 void set_mdio_pin(uint8_t mdio_pin);
75 void set_clk_mode(emac_rmii_clock_mode_t clk_mode, emac_rmii_clock_gpio_t clk_gpio);
79 void set_manual_ip(
const ManualIP &manual_ip);
84 void set_use_address(
const std::string &use_address);
85 void get_eth_mac_address_raw(uint8_t *mac);
86 std::string get_eth_mac_address_pretty();
87 eth_duplex_t get_duplex_mode();
88 eth_speed_t get_link_speed();
92 static void eth_event_handler(
void *arg, esp_event_base_t event_base, int32_t
event_id,
void *event_data);
93 static void got_ip_event_handler(
void *arg, esp_event_base_t event_base, int32_t event_id,
void *event_data);
95 static void got_ip6_event_handler(
void *arg, esp_event_base_t event_base, int32_t event_id,
void *event_data);
98 void start_connect_();
99 void dump_connect_params_();
101 void ksz8081_set_clock_reference_(esp_eth_mac_t *mac);
103 void write_phy_register_(esp_eth_mac_t *mac,
PHYRegister register_data);
106 #ifdef USE_ETHERNET_SPI 113 int phy_addr_spi_{-1};
116 uint8_t phy_addr_{0};
118 uint8_t mdc_pin_{23};
119 uint8_t mdio_pin_{18};
120 emac_rmii_clock_mode_t clk_mode_{EMAC_CLK_EXT_IN};
121 emac_rmii_clock_gpio_t clk_gpio_{EMAC_CLK_IN_GPIO};
122 std::vector<PHYRegister> phy_registers_{};
127 bool started_{
false};
128 bool connected_{
false};
129 bool got_ipv4_address_{
false};
131 uint8_t ipv6_count_{0};
135 esp_netif_t *eth_netif_{
nullptr};
137 esp_eth_phy_t *phy_{
nullptr};
network::IPAddress dns1
The first DNS server. 0.0.0.0 for default.
esp_eth_phy_t * esp_eth_phy_new_jl1101(const eth_phy_config_t *config)
network::IPAddress gateway
std::string get_use_address()
Get the active network hostname.
network::IPAddress subnet
bool is_connected()
Return whether the node is connected to the network (through wifi, eth, ...)
EthernetComponent * global_eth_component
network::IPAddresses get_ip_addresses()
network::IPAddress dns2
The second DNS server. 0.0.0.0 for default.
network::IPAddress static_ip
std::array< IPAddress, 5 > IPAddresses
void on_shutdown() override
Implementation of SPI Controller mode.
esp_eth_handle_t eth_handle_