blob: 23f24509282f634b6cab39dda1cdd39488159a7a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "esp_err.h"
esp_err_t net_eth_init(void);
esp_err_t net_eth_wait_for_ip(uint32_t timeout_ms);
bool net_eth_is_up(void);
const char *net_eth_get_ip_str(void);
|