Skip to content

Commit 1f99636

Browse files
authored
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.
1 parent f8f3172 commit 1f99636

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

NTPClient.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,6 @@ void NTPClient::sendNTPPacket() {
181181
// set all bytes in the buffer to 0
182182
memset(this->_packetBuffer, 0, NTP_PACKET_SIZE);
183183
// Initialize values needed to form NTP request
184-
// (see URL above for details on the packets)
185-
186184
this->_packetBuffer[0] = 0b11100011; // LI, Version, Mode
187185
this->_packetBuffer[1] = 0; // Stratum, or type of clock
188186
this->_packetBuffer[2] = 6; // Polling Interval

0 commit comments

Comments
 (0)