Files
snapclient/components/network_interface/include/eth_interface.h
Karl Osterseher fa9852ac31 - make wifi_provisioning component compatible with netwrok_interface component
- add i2s channel delete to deinit_player()
- improve network interface component
  store IP and connection status of interfaces
- improve UI http server

Signed-off-by: Karl Osterseher <karli_o@gmx.at>
2025-02-21 18:43:18 +01:00

17 lines
322 B
C

#ifndef COMPONENTS_NETWORK_INTERFACE_INCLUDE_ETH_INTERFACE_H
#define COMPONENTS_NETWORK_INTERFACE_INCLUDE_ETH_INTERFACE_H
#ifdef __cplusplus
extern "C" {
#endif
bool eth_get_ip(esp_netif_ip_info_t *ip);
void eth_start(void);
#ifdef __cplusplus
}
#endif
#endif // COMPONENTS_NETWORK_INTERFACE_INCLUDE_ETH_INTERFACE_H