Fixed so configTime will not crash if tcpip is not initialized (#3470)
This commit is contained in:
parent
8c4ca5a235
commit
f41beb92bf
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include "esp32-hal.h"
|
#include "esp32-hal.h"
|
||||||
#include "lwip/apps/sntp.h"
|
#include "lwip/apps/sntp.h"
|
||||||
|
#include "tcpip_adapter.h"
|
||||||
|
|
||||||
static void setTimeZone(long offset, int daylight)
|
static void setTimeZone(long offset, int daylight)
|
||||||
{
|
{
|
||||||
@ -45,6 +46,7 @@ static void setTimeZone(long offset, int daylight)
|
|||||||
* */
|
* */
|
||||||
void configTime(long gmtOffset_sec, int daylightOffset_sec, const char* server1, const char* server2, const char* server3)
|
void configTime(long gmtOffset_sec, int daylightOffset_sec, const char* server1, const char* server2, const char* server3)
|
||||||
{
|
{
|
||||||
|
tcpip_adapter_init(); // Should not hurt anything if already inited
|
||||||
if(sntp_enabled()){
|
if(sntp_enabled()){
|
||||||
sntp_stop();
|
sntp_stop();
|
||||||
}
|
}
|
||||||
@ -62,6 +64,7 @@ void configTime(long gmtOffset_sec, int daylightOffset_sec, const char* server1,
|
|||||||
* */
|
* */
|
||||||
void configTzTime(const char* tz, const char* server1, const char* server2, const char* server3)
|
void configTzTime(const char* tz, const char* server1, const char* server2, const char* server3)
|
||||||
{
|
{
|
||||||
|
tcpip_adapter_init(); // Should not hurt anything if already inited
|
||||||
if(sntp_enabled()){
|
if(sntp_enabled()){
|
||||||
sntp_stop();
|
sntp_stop();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user