diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-18 10:07:57 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-22 09:07:12 -0500 |
commit | eb7842c221912009e539b50fdd0dde6a050022b4 (patch) | |
tree | b646220cf10f2b558d3890063f3d4b808787178f /klippy/pins.py | |
parent | 7327394c50cc52ba2363959b0647370860f18d9f (diff) | |
download | kutter-eb7842c221912009e539b50fdd0dde6a050022b4.tar.gz kutter-eb7842c221912009e539b50fdd0dde6a050022b4.tar.xz kutter-eb7842c221912009e539b50fdd0dde6a050022b4.zip |
atsam: Add support for the SAM3X8C micro-controller
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/pins.py')
-rw-r--r-- | klippy/pins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/pins.py b/klippy/pins.py index 0b6bc5ff..abca279e 100644 --- a/klippy/pins.py +++ b/klippy/pins.py @@ -44,7 +44,7 @@ MCU_PINS = { "at90usb1286": port_pins(6), "at90usb646": port_pins(6), "atmega32u4": port_pins(6), "atmega1280": port_pins(12), "atmega2560": port_pins(12), - "sam3x8e": port_pins(4, 32), + "sam3x8e": port_pins(4, 32), "sam3x8c": port_pins(2, 32), "sam4s8c": port_pins(3, 32), "sam4e8e" : port_pins(5, 32), "samd21g": port_pins(2, 32), "stm32f103": port_pins(5, 16), |