My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

watchdog.h 329B

12345678910111213
  1. #ifndef __WATCHDOGH
  2. #define __WATCHDOGH
  3. #include "Configuration.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. //#endif
  10. #endif