Fix compiling for Arduin < 1.0.0
This commit is contained in:
		| @@ -26,14 +26,12 @@ | ||||
| #define  HardwareSerial_h // trick to disable the standard HWserial | ||||
| #endif | ||||
|  | ||||
| #if ARDUINO >= 100  | ||||
|   #if defined(__AVR_ATmega644P__) | ||||
|     #include "WProgram.h" | ||||
|   #else | ||||
| #if (ARDUINO >= 100) && !defined(__AVR_ATmega644P__) | ||||
| # include "Arduino.h" | ||||
|   #endif | ||||
| #else | ||||
| # include "WProgram.h" | ||||
|   //Arduino < 1.0.0 does not define this, so we need to do it ourselfs | ||||
| # define analogInputToDigitalPin(p) ((p) + A0) | ||||
| #endif | ||||
|  | ||||
| #include "MarlinSerial.h" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user