You are reading a single comment by @DanDyse and its replies. Click here to read the full conversation.
  • Thank you Gordon. I have the following code:

    function Timer() {
      [... some more code ...]
      setTimeout(Timer, 60000);
      E.kickWatchdog();
    }
    
    E.enableWatchdog(10, false);
    setTimeout(Timer, 60000);
    

    This is supposed to run some code once per minute.
    But the dog seems to never let it happen this way ... do I need to set the watchdog's timeout higher than my code timeout? The timeout function is not considered "idle" by the watchdog so I need to add this to the time I want to let the code do its thing?

About

Avatar for DanDyse @DanDyse started