aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/pins.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-09-24 09:52:28 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-08-14 22:00:17 -0400
commitcf3c7cd99afccdb20b7b015a3e8b80555d4986ad (patch)
treead71d8fea218a701433ec72275f152b026770741 /klippy/pins.py
parentf759df3cd72d0b1cb05615b2e4b04bbf5e8d62f8 (diff)
downloadkutter-cf3c7cd99afccdb20b7b015a3e8b80555d4986ad.tar.gz
kutter-cf3c7cd99afccdb20b7b015a3e8b80555d4986ad.tar.xz
kutter-cf3c7cd99afccdb20b7b015a3e8b80555d4986ad.zip
avr: Rename the analog-only PE0/PE1 pins on atmega168/328 to PE2/PE3
The atmega328pb has officially named these pins as PE2 and PE3, so use that naming scheme instead of the previous Klipper invented names. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/pins.py')
-rw-r--r--klippy/pins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/pins.py b/klippy/pins.py
index a160c78b..2ac9856c 100644
--- a/klippy/pins.py
+++ b/klippy/pins.py
@@ -18,7 +18,7 @@ Arduino_standard = [
"PB2", "PB3", "PB4", "PB5", "PC0", "PC1", "PC2", "PC3", "PC4", "PC5",
]
Arduino_analog_standard = [
- "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PE0", "PE1",
+ "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PE2", "PE3",
]
Arduino_mega = [