My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. #ifndef __WATCHDOGH
  2. #define __WATCHDOGH
  3. #include "Marlin.h"
  4. #ifdef USE_WATCHDOG
  5. // intialise watch dog with a 1 sec interrupt time
  6. void wd_init();
  7. // pad the dog/reset watchdog. MUST be called at least every second after the first wd_init or avr will go into emergency procedures..
  8. void wd_reset();
  9. #else
  10. FORCE_INLINE void wd_init() {};
  11. FORCE_INLINE void wd_reset() {};
  12. #endif
  13. #endif