- 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>
17 lines
322 B
C
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
|