Fix compiling for Arduin < 1.0.0

This commit is contained in:
daid303 2012-12-13 13:24:55 +01:00
parent 08356361ac
commit 596a7e1904

View File

@ -26,14 +26,12 @@
#define HardwareSerial_h // trick to disable the standard HWserial #define HardwareSerial_h // trick to disable the standard HWserial
#endif #endif
#if ARDUINO >= 100 #if (ARDUINO >= 100) && !defined(__AVR_ATmega644P__)
#if defined(__AVR_ATmega644P__) # include "Arduino.h"
#include "WProgram.h"
#else
#include "Arduino.h"
#endif
#else #else
#include "WProgram.h" # include "WProgram.h"
//Arduino < 1.0.0 does not define this, so we need to do it ourselfs
# define analogInputToDigitalPin(p) ((p) + A0)
#endif #endif
#include "MarlinSerial.h" #include "MarlinSerial.h"