aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/pins.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-05-28 10:45:32 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-05-28 10:45:32 -0400
commitd2547ce6b08965ea940e1690807e812841a38b8f (patch)
tree65ee94397e2f57472dabf2b335e8653ff16248e3 /klippy/pins.py
parent7e3d7e071f3819894e6a56272a95df0cd9324548 (diff)
downloadkutter-d2547ce6b08965ea940e1690807e812841a38b8f.tar.gz
kutter-d2547ce6b08965ea940e1690807e812841a38b8f.tar.xz
kutter-d2547ce6b08965ea940e1690807e812841a38b8f.zip
avr: Add support for atmega328 chip
The atmega328 is basically the same as the atmega168 - it just adds some additional memory. Allow the chip to be selected during the build. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/pins.py')
-rw-r--r--klippy/pins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/pins.py b/klippy/pins.py
index c4d5d2a2..df2c7514 100644
--- a/klippy/pins.py
+++ b/klippy/pins.py
@@ -27,8 +27,8 @@ def beaglebone_pins():
return gpios
MCU_PINS = {
- "atmega168": port_pins(4), "atmega644p": port_pins(4),
- "at90usb1286": port_pins(5),
+ "atmega168": port_pins(4), "atmega328": port_pins(4),
+ "atmega644p": port_pins(4), "at90usb1286": port_pins(5),
"atmega1280": port_pins(12), "atmega2560": port_pins(12),
"sam3x8e": port_pins(4, 32),
"pru": beaglebone_pins(),