From d2547ce6b08965ea940e1690807e812841a38b8f Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 28 May 2017 10:45:32 -0400 Subject: 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 --- klippy/pins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'klippy/pins.py') 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(), -- cgit v1.2.3-70-g09d2