Skip to content
Snippets Groups Projects
watchdog.h 527 B
Newer Older
  • Learn to ignore specific revisions
  • Bernhard's avatar
    Bernhard committed
    #ifndef WATCHDOG_H
    #define WATCHDOG_H
    
    Bernhard's avatar
    Bernhard committed
    #include "Marlin.h"
    
    #if ENABLED(USE_WATCHDOG)
    
      // initialize watch dog with a 1 sec interrupt time
    
      // pad the dog/reset watchdog. MUST be called at least every second after the first watchdog_init or AVR will go into emergency procedures..
    
      //If we do not have a watchdog, then we can have empty functions which are optimized away.
      FORCE_INLINE void watchdog_init() {};
      FORCE_INLINE void watchdog_reset() {};
    
    Bernhard Kubicek's avatar
    Bernhard Kubicek committed
    
    #endif