From 1f996361da0962f0267ec216312b55562f4e58d6 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 21 May 2021 14:12:29 -0700 Subject: [PATCH] Remove erroneous comment re: packets The comment directs the reader to find a URL "above" for more information, but there is no such URL anywhere in the source code, and never was even when the comment was introduced to the repository on the first commit. --- NTPClient.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/NTPClient.cpp b/NTPClient.cpp index 2f30602..357edc4 100755 --- a/NTPClient.cpp +++ b/NTPClient.cpp @@ -181,8 +181,6 @@ void NTPClient::sendNTPPacket() { // set all bytes in the buffer to 0 memset(this->_packetBuffer, 0, NTP_PACKET_SIZE); // Initialize values needed to form NTP request - // (see URL above for details on the packets) - this->_packetBuffer[0] = 0b11100011; // LI, Version, Mode this->_packetBuffer[1] = 0; // Stratum, or type of clock this->_packetBuffer[2] = 6; // Polling Interval