We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25c5b71 + ab0d6aa commit 795755cCopy full SHA for 795755c
src/GSMConnectionManager.h
@@ -142,7 +142,7 @@ void GSMConnectionManager::check() {
142
}
143
debugMessage("Sending PING to outer space...", 2);
144
int pingResult;
145
- pingResult = gprs.ping("google.com");
+ pingResult = gprs.ping("time.arduino.cc");
146
sprintf(msgBuffer, "GSM.ping(): %d", pingResult);
147
debugMessage(msgBuffer, 2);
148
if (pingResult < 0) {
src/utility/NTPUtils.h
@@ -15,7 +15,7 @@ class NTPUtils {
15
unsigned long getTime();
16
static bool isTimeValid(unsigned long time);
17
private:
18
- const char* timeServer = "time.apple.com";
+ const char* timeServer = "time.arduino.cc";
19
const int NTP_PACKET_SIZE = 48;
20
UDP& Udp;
21
};
0 commit comments