Merge branch 'bugfix/lwip_sntp_enabled_missing' into 'master'

lw-ip: Add missing esp_sntp_enabled()

See merge request espressif/esp-idf!22480
This commit is contained in:
David Čermák 2023-03-01 19:07:06 +08:00
commit 4bef5f9056
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