]> the.earth.li Git - esp8266-clock.git/blob - clock.c
Initial check-in of ESP8266 / MAX7219 NTP backed LED clock
[esp8266-clock.git] / clock.c
1 /*
2  * Copyright 2017 Jonathan McDowell <noodles@earth.li>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  * NTP code based on https://github.com/raburton/esp8266/tree/master/ntp
18  * Those portions MIT licensed:
19  *
20  * Copyright (c) 2015 Richard A Burton (richardaburton@gmail.com)
21  *
22  * Permission is hereby granted, free of charge, to any person obtaining a copy
23  * of this software and associated documentation files (the "Software"), to deal
24  * in the Software without restriction, including without limitation the rights
25  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26  * copies of the Software, and to permit persons to whom the Software is
27  * furnished to do so, subject to the following conditions:
28  *
29  * The above copyright notice and this permission notice shall be included in
30  * all copies or substantial portions of the Software.
31  *
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38  * THE SOFTWARE.
39  */
40 #include <stdint.h>
41
42 #include <user_interface.h>
43 #include <espconn.h>
44 #include <mem.h>
45 #include <osapi.h>
46
47 #include "espmissingincludes.h"
48
49 #include "clock.h"
50
51 #define NTP_TIMEOUT_MS 5000
52
53 static uint32_t sys_last_ticks;
54 static uint32_t sys_delta;
55 static os_timer_t ntp_timeout;
56 static struct espconn *pCon = NULL;
57
58 uint8 ntp_server[] = {87, 124, 126, 49};
59
60 typedef struct {
61         uint8 options;
62         uint8 stratum;
63         uint8 poll;
64         uint8 precision;
65         uint32 root_delay;
66         uint32 root_disp;
67         uint32 ref_id;
68         uint8 ref_time[8];
69         uint8 orig_time[8];
70         uint8 recv_time[8];
71         uint8 trans_time[8];
72 } ntp_t;
73
74 void ICACHE_FLASH_ATTR set_time(uint32_t now)
75 {
76         sys_last_ticks = system_get_time();
77         sys_delta = now - (sys_last_ticks / 1000000);
78 }
79
80 uint32_t ICACHE_FLASH_ATTR get_time(void)
81 {
82         uint32_t sys_ticks;
83
84         sys_ticks = system_get_time();
85         if (sys_ticks < sys_last_ticks) {
86                 sys_delta += (1ULL << 32ULL) / 1000000;
87         }
88         sys_last_ticks = sys_ticks;
89
90         return sys_ticks / 1000000 + sys_delta;
91 }
92
93 void ICACHE_FLASH_ATTR breakdown_time(uint32_t time, struct tm *result)
94 {
95         result->tm_sec = time % 60;
96         time /= 60;
97         result->tm_min = time % 60;
98         time /= 60;
99         result->tm_hour = time % 24;
100         time /= 24;
101
102         result->tm_year = time / (365 * 4 + 1) * 4 + 70;
103         time %= 365 * 4 + 1;
104 }
105
106 static void ICACHE_FLASH_ATTR ntp_udp_timeout(void *arg) {
107         os_timer_disarm(&ntp_timeout);
108         os_printf("NTP timeout.\n");
109
110         // clean up connection
111         if (pCon) {
112                 espconn_delete(pCon);
113                 os_free(pCon->proto.udp);
114                 os_free(pCon);
115                 pCon = 0;
116         }
117 }
118
119 static void ICACHE_FLASH_ATTR ntp_udp_recv(void *arg, char *pdata,
120         unsigned short len)
121 {
122         uint32_t timestamp;
123         ntp_t *ntp;
124         struct tm dt;
125
126         os_printf("Got NTP response.\n");
127
128         os_timer_disarm(&ntp_timeout);
129
130         // Extract NTP time
131         ntp = (ntp_t *) pdata;
132         timestamp = ntp->trans_time[0] << 24 | ntp->trans_time[1] << 16 |
133                 ntp->trans_time[2] << 8 | ntp->trans_time[3];
134         // Convert to Unix time ms
135         timestamp -= 2208988800ULL;
136
137         // Store the time
138         set_time(timestamp);
139
140         // Print it out
141         breakdown_time(timestamp, &dt);
142         os_printf("%04d %02d:%02d:%02d (%u)\r\n", dt.tm_year, dt.tm_hour,
143                 dt.tm_min, dt.tm_sec, timestamp);
144
145         // clean up connection
146         if (pCon) {
147                 espconn_delete(pCon);
148                 os_free(pCon->proto.udp);
149                 os_free(pCon);
150                 pCon = NULL;
151         }
152 }
153
154 void ICACHE_FLASH_ATTR ntp_get_time(void)
155 {
156         ntp_t ntp;
157
158         os_printf("Sending NTP request.\n");
159
160         // Set up the UDP "connection"
161         pCon = (struct espconn *) os_zalloc(sizeof(struct espconn));
162         pCon->type = ESPCONN_UDP;
163         pCon->state = ESPCONN_NONE;
164         pCon->proto.udp = (esp_udp *) os_zalloc(sizeof(esp_udp));
165         pCon->proto.udp->local_port = espconn_port();
166         pCon->proto.udp->remote_port = 123;
167         os_memcpy(pCon->proto.udp->remote_ip, ntp_server, 4);
168
169         // Create a really simple NTP request packet
170         os_memset(&ntp, 0, sizeof(ntp_t));
171         ntp.options = 0b00100011; // leap = 0, version = 4, mode = 3 (client)
172
173         // Set timeout timer
174         os_timer_disarm(&ntp_timeout);
175         os_timer_setfn(&ntp_timeout, (os_timer_func_t*) ntp_udp_timeout, pCon);
176         os_timer_arm(&ntp_timeout, NTP_TIMEOUT_MS, 0);
177
178         // Send the NTP request
179         espconn_create(pCon);
180         espconn_regist_recvcb(pCon, ntp_udp_recv);
181         espconn_sent(pCon, (uint8_t *) &ntp, sizeof(ntp_t));
182 }
183
184 void ICACHE_FLASH_ATTR rtc_init(void)
185 {
186         sys_last_ticks = system_get_time();
187 }