Git Product home page Git Product logo

Comments (3)

dalbert2 avatar dalbert2 commented on July 17, 2024

Note: this is a particularly serious problem if now() is called from within an ISR context (e.g. a Ticker). NTPClientLib installs a sync function (getTime()) for TimeLib and if the sync period has expired, that function will be called when now() is called. Because getTime() uses the network and can block for an extended period, it is particularly bad (and will usually cause an exception) if it happens when called in an ISR context.

A solution for now is to avoid calling now() within an ISR context or to create a non-blocking version of now() that avoids the call to getTime() and to use this non-blocking version for any calls that may be made from an ISR context.

from ntpclient.

gmag11 avatar gmag11 commented on July 17, 2024

You can reduce timeout for NTP of set a lower retrial rate using bool setInterval (int shortInterval, int longInterval)

I'm thinking about using AsyncUDP library but this would make this project compatible only with Espresif microcontrollers.

from ntpclient.

gmag11 avatar gmag11 commented on July 17, 2024

I've added a way to configure NTP timeout. Maybe it may work as a workaround.

To avoid frequent NTP requests in case of bad connection I've added a condition to keep long interval if time is already set. This will only happen on 1st error, because Time library set status to needSync after it.

from ntpclient.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.