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.

watchdog.h 277B

12345678910
  1. #ifndef __WATCHDOGH
  2. #define __WATCHDOGH
  3. #ifdef
  4. /// intialise watch dog with a 1 sec interrupt time
  5. void wd_init();
  6. /// pad the dog/reset watchdog. MUST be called at least every second after the first wd_init or avr will go into emergency procedures..
  7. void wd_reset();
  8. #endif