Skip to content

Change ntp/ping server to the arduino ones #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/GSMConnectionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void GSMConnectionManager::check() {
}
debugMessage("Sending PING to outer space...", 2);
int pingResult;
pingResult = gprs.ping("google.com");
pingResult = gprs.ping("time.arduino.cc");
sprintf(msgBuffer, "GSM.ping(): %d", pingResult);
debugMessage(msgBuffer, 2);
if (pingResult < 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/utility/NTPUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class NTPUtils {
unsigned long getTime();
static bool isTimeValid(unsigned long time);
private:
const char* timeServer = "time.apple.com";
const char* timeServer = "time.arduino.cc";
const int NTP_PACKET_SIZE = 48;
UDP& Udp;
};
Expand Down