diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-31 15:49:37 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-08-07 00:03:21 -0400 |
commit | cf2393efc8697028ec9fc389ec992c6050fb5878 (patch) | |
tree | 8ac2e750a0a0c7589d975a0be05ea718b0431b7c /klippy/pins.py | |
parent | 74cf4dc9e0fa129b315b398d8e70e4df20b26aea (diff) | |
download | kutter-cf2393efc8697028ec9fc389ec992c6050fb5878.tar.gz kutter-cf2393efc8697028ec9fc389ec992c6050fb5878.tar.xz kutter-cf2393efc8697028ec9fc389ec992c6050fb5878.zip |
samd21: Add support for gpio pins
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/pins.py')
-rw-r--r-- | klippy/pins.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/pins.py b/klippy/pins.py index 20f78295..9a3f1ccf 100644 --- a/klippy/pins.py +++ b/klippy/pins.py @@ -40,6 +40,7 @@ MCU_PINS = { "at90usb1286": port_pins(6), "at90usb646": port_pins(6), "atmega1280": port_pins(12), "atmega2560": port_pins(12), "sam3x8e": port_pins(4, 32), + "samd21g": port_pins(2, 32), "stm32f103": port_pins(5, 16), "lpc176x": lpc_pins(), "pru": beaglebone_pins(), |