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/wiring_analog.c | |
parent | bd45bf50c7c68ec35c3aad8c5e7bf4d3db9cafc1 (diff) |
Adding ATmega644P check to ATmega1284P check.
Diffstat (limited to 'cores/arduino/wiring_analog.c')
-rw-r--r-- | cores/arduino/wiring_analog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/wiring_analog.c b/cores/arduino/wiring_analog.c index 0e9881f..23b01c6 100644 --- a/cores/arduino/wiring_analog.c +++ b/cores/arduino/wiring_analog.c @@ -45,7 +45,7 @@ int analogRead(uint8_t pin) if (pin >= 54) pin -= 54; // allow for channel or pin numbers #elif defined(__AVR_ATmega32U4__) if (pin >= 18) pin -= 18; // allow for channel or pin numbers -#elif defined(__AVR_ATmega1284__) +#elif defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644P__) if (pin >= 24) pin -= 24; // allow for channel or pin numbers #else if (pin >= 14) pin -= 14; // allow for channel or pin numbers |