lwip: Add missing esp_sntp_enabled()

This commit is contained in:
David Cermak 2023-02-22 15:47:12 +01:00
parent 079611dd16
commit 35eeb04829
2 changed files with 11 additions and 0 deletions

View File

@ -236,3 +236,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();
}

View File

@ -213,6 +213,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