My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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