From f8ec77a59ae23e61eeb657f4101fbba360fbcddb Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Sun, 27 Jan 2019 11:06:30 +0000 Subject: [PATCH] Switch NTP to update hourly rather than only wifi connect The ESP8266 clock seems to drift quite badly so a single NTP sync when we connect to wifi isn't sufficient to keep our time accurate. Set up a timer to resync hourly. --- user_main.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/user_main.c b/user_main.c index c6ae567..26150f8 100644 --- a/user_main.c +++ b/user_main.c @@ -1,5 +1,5 @@ /* - * Copyright 2017 Jonathan McDowell + * Copyright 2017-2019 Jonathan McDowell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,6 +28,7 @@ struct station_config wificfg; static os_timer_t update_timer; +static os_timer_t ntp_timer; static const struct fontchar clocknums[] = { { .width = 5, @@ -105,15 +106,24 @@ void ICACHE_FLASH_ATTR update_func(void *arg) max7219_show(); } +void ICACHE_FLASH_ATTR ntp_func(void *arg) +{ + ntp_get_time(); +} + void ICACHE_FLASH_ATTR wifi_callback(System_Event_t *evt) { switch (evt->event) { case EVENT_STAMODE_CONNECTED: case EVENT_STAMODE_DISCONNECTED: + os_timer_disarm(&ntp_timer); break; case EVENT_STAMODE_GOT_IP: ntp_get_time(); ota_check(); + os_timer_disarm(&ntp_timer); + os_timer_setfn(&ntp_timer, ntp_func, NULL); + os_timer_arm(&ntp_timer, 3600 * 1000 /* Hourly */, 1); default: break; } -- 2.39.2