Open al-t opened 5 years ago
I think there is an error on the Caveats Gotchas Wiki Page:
TrueTimeRx.initializeNtp("time.google.com") should be TrueTimeRx.build().initializeNtp("time.google.com") as initializeNtp is non-static and should be called upon the instance.
TrueTimeRx.initializeNtp("time.google.com")
TrueTimeRx.build().initializeNtp("time.google.com")
initializeNtp
I think there is an error on the Caveats Gotchas Wiki Page:
TrueTimeRx.initializeNtp("time.google.com")
should beTrueTimeRx.build().initializeNtp("time.google.com")
asinitializeNtp
is non-static and should be called upon the instance.