|
| 1 | +/* |
| 2 | + This file is part of ArduinoIoTCloud. |
| 3 | +
|
| 4 | + Copyright 2020 ARDUINO SA (http://www.arduino.cc/) |
| 5 | +
|
| 6 | + This software is released under the GNU General Public License version 3, |
| 7 | + which covers the main part of arduino-cli. |
| 8 | + The terms of this license can be found at: |
| 9 | + https://www.gnu.org/licenses/gpl-3.0.en.html |
| 10 | +
|
| 11 | + You can be released from the requirements of the above licenses by purchasing |
| 12 | + a commercial license. Buying such a license is mandatory if you want to modify or |
| 13 | + otherwise use the software for commercial activities involving the Arduino |
| 14 | + software without disclosing the source code of your own applications. To purchase |
| 15 | + a commercial license, send an email to [email protected]. |
| 16 | +*/ |
| 17 | + |
| 18 | +/************************************************************************************** |
| 19 | + * INCLUDE |
| 20 | + **************************************************************************************/ |
| 21 | + |
| 22 | +#include "../../ArduinoIoTCloud_Defines.h" |
| 23 | +#ifndef HAS_LORA |
| 24 | + |
| 25 | +#include "NTPUtils.h" |
| 26 | + |
| 27 | +#include <Arduino.h> |
| 28 | + |
| 29 | +/************************************************************************************** |
| 30 | + * PUBLIC MEMBER FUNCTIONS |
| 31 | + **************************************************************************************/ |
| 32 | + |
| 33 | +unsigned long NTPUtils::getTime(UDP & udp) |
| 34 | +{ |
| 35 | + udp.begin(NTP_LOCAL_PORT); |
| 36 | + |
| 37 | + sendNTPpacket(udp); |
| 38 | + |
| 39 | + bool is_timeout = false; |
| 40 | + unsigned long const start = millis(); |
| 41 | + do |
| 42 | + { |
| 43 | + is_timeout = (millis() - start) >= NTP_TIMEOUT_MS; |
| 44 | + } while(!is_timeout && !udp.parsePacket()); |
| 45 | + |
| 46 | + if(is_timeout) { |
| 47 | + udp.stop(); |
| 48 | + return 0; |
| 49 | + } |
| 50 | + |
| 51 | + uint8_t ntp_packet_buf[NTP_PACKET_SIZE]; |
| 52 | + udp.read(ntp_packet_buf, NTP_PACKET_SIZE); |
| 53 | + udp.stop(); |
| 54 | + |
| 55 | + unsigned long const highWord = word(ntp_packet_buf[40], ntp_packet_buf[41]); |
| 56 | + unsigned long const lowWord = word(ntp_packet_buf[42], ntp_packet_buf[43]); |
| 57 | + unsigned long const secsSince1900 = highWord << 16 | lowWord; |
| 58 | + unsigned long const seventyYears = 2208988800UL; |
| 59 | + unsigned long const epoch = secsSince1900 - seventyYears; |
| 60 | + |
| 61 | + return epoch; |
| 62 | +} |
| 63 | + |
| 64 | +/************************************************************************************** |
| 65 | + * PRIVATE MEMBER FUNCTIONS |
| 66 | + **************************************************************************************/ |
| 67 | + |
| 68 | +void NTPUtils::sendNTPpacket(UDP & udp) |
| 69 | +{ |
| 70 | + uint8_t ntp_packet_buf[NTP_PACKET_SIZE] = {0}; |
| 71 | + |
| 72 | + ntp_packet_buf[0] = 0b11100011; |
| 73 | + ntp_packet_buf[1] = 0; |
| 74 | + ntp_packet_buf[2] = 6; |
| 75 | + ntp_packet_buf[3] = 0xEC; |
| 76 | + ntp_packet_buf[12] = 49; |
| 77 | + ntp_packet_buf[13] = 0x4E; |
| 78 | + ntp_packet_buf[14] = 49; |
| 79 | + ntp_packet_buf[15] = 52; |
| 80 | + |
| 81 | + udp.beginPacket(NTP_TIME_SERVER, NTP_TIME_SERVER_PORT); |
| 82 | + udp.write(ntp_packet_buf, NTP_PACKET_SIZE); |
| 83 | + udp.endPacket(); |
| 84 | +} |
| 85 | + |
| 86 | +#endif /* #ifndef HAS_LORA */ |
0 commit comments