extruder doesn't use serial.c, update watchdog.c to suit

This commit is contained in:
Michael Moon 2011-03-24 10:51:57 +11:00
parent 196caff134
commit 081b693341
2 changed files with 6 additions and 2 deletions

View File

@ -16,7 +16,9 @@
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include "arduino.h" #include "arduino.h"
#include "serial.h" #ifndef EXTRUDER
#include "serial.h"
#endif
volatile uint8_t wd_flag = 0; volatile uint8_t wd_flag = 0;

View File

@ -16,7 +16,9 @@
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include "arduino.h" #include "arduino.h"
#include "serial.h" #ifndef EXTRUDER
#include "serial.h"
#endif
volatile uint8_t wd_flag = 0; volatile uint8_t wd_flag = 0;