X-Git-Url: https://the.earth.li/gitweb/?p=esp8266-clock.git;a=blobdiff_plain;f=user_main.c;h=26150f8bbe640c9552e245be23ba3df7957b2084;hp=c6ae56740d36e6165f85be9b37d114ca865086c3;hb=f8ec77a59ae23e61eeb657f4101fbba360fbcddb;hpb=8ecc02cb462cfd4fd0b7510922e7063b65c5795b 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; }