aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/pins.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2016-06-04 19:34:39 -0400
committerKevin O'Connor <kevin@koconnor.net>2016-06-05 10:52:45 -0400
commit3eafc8345885ff7d58c0124e518b240cbbaa8ecc (patch)
tree8a97d30951000819dd7f3074721ab25b3731b68f /klippy/pins.py
parent4326a3adced3788c774bf248d64776d730bafe0f (diff)
downloadkutter-3eafc8345885ff7d58c0124e518b240cbbaa8ecc.tar.gz
kutter-3eafc8345885ff7d58c0124e518b240cbbaa8ecc.tar.xz
kutter-3eafc8345885ff7d58c0124e518b240cbbaa8ecc.zip
avr: Initial support for Atmel AT90USB1286 mcu
Add GPIO definitions for the AT90USB1286. Add code for communicating over USB port on AT90USB1286. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/pins.py')
-rw-r--r--klippy/pins.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/pins.py b/klippy/pins.py
index fad41643..d2d884d1 100644
--- a/klippy/pins.py
+++ b/klippy/pins.py
@@ -21,6 +21,7 @@ PINS_atmega1280 = avr_pins(12)
MCU_PINS = {
"atmega168": PINS_atmega164, "atmega644p": PINS_atmega164,
+ "at90usb1286": avr_pins(5),
"atmega1280": PINS_atmega1280, "atmega2560": PINS_atmega1280,
}