mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
lwip: Add missing esp_sntp_enabled()
This commit is contained in:
parent
229635de06
commit
708641204e
@ -255,3 +255,8 @@ void esp_sntp_servermode_dhcp(bool enable)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif /* LWIP_DHCP_GET_NTP_SRV */
|
#endif /* LWIP_DHCP_GET_NTP_SRV */
|
||||||
|
|
||||||
|
bool esp_sntp_enabled(void)
|
||||||
|
{
|
||||||
|
return sntp_enabled();
|
||||||
|
}
|
||||||
|
@ -212,6 +212,12 @@ const char *esp_sntp_getservername(u8_t idx);
|
|||||||
*/
|
*/
|
||||||
const ip_addr_t* esp_sntp_getserver(u8_t idx);
|
const ip_addr_t* esp_sntp_getserver(u8_t idx);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Checks if sntp is enabled
|
||||||
|
* @return true if sntp module is enabled
|
||||||
|
*/
|
||||||
|
bool esp_sntp_enabled(void);
|
||||||
|
|
||||||
#if LWIP_DHCP_GET_NTP_SRV
|
#if LWIP_DHCP_GET_NTP_SRV
|
||||||
/**
|
/**
|
||||||
* @brief Enable acquiring SNTP server from DHCP
|
* @brief Enable acquiring SNTP server from DHCP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user