lwip: Add missing esp_sntp_enabled()

This commit is contained in:
David Cermak 2023-02-22 15:47:12 +01:00
parent 229635de06
commit 708641204e
2 changed files with 11 additions and 0 deletions

View File

@ -255,3 +255,8 @@ void esp_sntp_servermode_dhcp(bool enable)
}
#endif /* LWIP_DHCP_GET_NTP_SRV */
bool esp_sntp_enabled(void)
{
return sntp_enabled();
}

View File

@ -212,6 +212,12 @@ const char *esp_sntp_getservername(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
/**
* @brief Enable acquiring SNTP server from DHCP