aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Arduino.h
diff options
context:
space:
mode:
authorKristian Sloth Lauszus <lauszus@gmail.com>2013-04-04 20:55:15 +0200
committerKristian Sloth Lauszus <lauszus@gmail.com>2013-04-04 20:55:15 +0200
commited42d9541213a5e37fe0151dee89868d5c502305 (patch)
treebbbe945a90fb177c114c392e0f3089be7622a283 /cores/arduino/Arduino.h
parentf50c307be280dc6ece9e70c43b301c1db36291a0 (diff)
Added support for all variants of Sanguino
Diffstat (limited to 'cores/arduino/Arduino.h')
-rwxr-xr-xcores/arduino/Arduino.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Arduino.h b/cores/arduino/Arduino.h
index b265825..3b9ccca 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__) || defined(__AVR_ATmega644P__)
+#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644__) || defined(__AVR_ATmega644A__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644PA__)
#define INTERNAL1V1 2
#define INTERNAL2V56 3
#else