diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-11-16 10:49:41 -0500 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-11-16 10:49:41 -0500 |
commit | 3c60b1e54fad5b8e5aaf03c972cceb5711c54b89 (patch) | |
tree | 5d2104246d1e2a52da07df31766fe8e2d0fc6e79 /cores/arduino/wiring_analog.c | |
parent | 768670f3b3f8d120abf7246ea6535cb2debb3d6e (diff) |
Fixed handling of Ax constants on Leonardo
Fixed mistake in assignment and handling of A6-A11 constants. Renumbered constants for all Ax channels.
Diffstat (limited to 'cores/arduino/wiring_analog.c')
-rw-r--r-- | cores/arduino/wiring_analog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cores/arduino/wiring_analog.c b/cores/arduino/wiring_analog.c index 2b1f3a0..902b153 100644 --- a/cores/arduino/wiring_analog.c +++ b/cores/arduino/wiring_analog.c @@ -43,6 +43,8 @@ int analogRead(uint8_t pin) #if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) 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 #else if (pin >= 14) pin -= 14; // allow for channel or pin numbers #endif |