You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a (very short) look at the code, since I am (and have been - like may others) working on a similar (non-commercial) project, and I found two small things that could be (IMO) improved:
using pool.ntp.org as NTP server name should assign you a random server from the NTP pool instead of forcing people to Google
// *************************** time change rule stuff **********************************//
//Central European Time (Frankfurt, Paris)
TimeChangeRule CEST = {"CEST", Last, Sun, Mar, 2, 120}; //Central European Summer Time
TimeChangeRule CET = {"CET ", Last, Sun, Oct, 3, 60}; //Central European Standard Time
Timezone CE(CEST, CET);
TimeChangeRule *tcr; // pointer to the time change rule, use to get TZ abbrev
// *************************** time change rule stuff **********************************//
The text was updated successfully, but these errors were encountered:
Hi,
I had a (very short) look at the code, since I am (and have been - like may others) working on a similar (non-commercial) project, and I found two small things that could be (IMO) improved:
The text was updated successfully, but these errors were encountered: