diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2012-10-09 13:53:09 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2012-10-09 13:53:09 -0400 |
commit | 6d296e0faba5b9910084c307a3f93cb2653bf7f8 (patch) | |
tree | 3811bfdb8c27275ab0b7da22c55c3c27a6a343ea /cores/arduino/Arduino.h | |
parent | bd45bf50c7c68ec35c3aad8c5e7bf4d3db9cafc1 (diff) |
Adding ATmega644P check to ATmega1284P check.
Diffstat (limited to 'cores/arduino/Arduino.h')
-rwxr-xr-x | cores/arduino/Arduino.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Arduino.h b/cores/arduino/Arduino.h index 830c995..b265825 100755 --- a/cores/arduino/Arduino.h +++ b/cores/arduino/Arduino.h @@ -46,7 +46,7 @@ extern "C"{ #define EXTERNAL 1 #define INTERNAL 2 #else -#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1284P__) +#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644P__) #define INTERNAL1V1 2 #define INTERNAL2V56 3 #else |