mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-25 20:02:37 +03:00
* add new WiFimodes: WIFI_SHUTDOWN & WIFI_RESUME with example * restore WiFi.onWiFiModeChange()
25 lines
274 B
C++
25 lines
274 B
C++
|
|
#include <lwip/netif.h>
|
|
|
|
extern "C"
|
|
{
|
|
|
|
netif* netif_list = nullptr;
|
|
|
|
err_t dhcp_renew(struct netif *netif)
|
|
{
|
|
(void)netif;
|
|
return ERR_OK;
|
|
}
|
|
|
|
void sntp_setserver(u8_t, const ip_addr_t)
|
|
{
|
|
}
|
|
|
|
const ip_addr_t* sntp_getserver(u8_t)
|
|
{
|
|
return IP_ADDR_ANY;
|
|
}
|
|
|
|
} // extern "C"
|