diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-10-05 16:57:44 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-10-05 16:57:44 -0400 |
commit | 0ec7eda11b0f83f60bec37da472a3795c22d0e0d (patch) | |
tree | 2c519197494fafd888c5003c3ed28b47a16b1a69 | |
parent | fb0f34434624b06d69e1efaf4d928265aa83e99a (diff) | |
download | kutter-0ec7eda11b0f83f60bec37da472a3795c22d0e0d.tar.gz kutter-0ec7eda11b0f83f60bec37da472a3795c22d0e0d.tar.xz kutter-0ec7eda11b0f83f60bec37da472a3795c22d0e0d.zip |
pins: Add pin mapping for atmega1284p
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/pins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/pins.py b/klippy/pins.py index 5bbaf855..327e1fe2 100644 --- a/klippy/pins.py +++ b/klippy/pins.py @@ -3,7 +3,6 @@ # Copyright (C) 2016,2017 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. - import re @@ -33,7 +32,8 @@ def beaglebone_pins(): MCU_PINS = { "atmega168": port_pins(4), "atmega328": port_pins(4), - "atmega644p": port_pins(4), "at90usb1286": port_pins(6), + "atmega644p": port_pins(4), "atmega1284p": port_pins(4), + "at90usb1286": port_pins(6), "atmega1280": port_pins(12), "atmega2560": port_pins(12), "sam3x8e": port_pins(4, 32), "pru": beaglebone_pins(), |