diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-12 12:35:11 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-03-17 19:38:18 -0400 |
commit | df6136802a5ccc06a71272b0a780006da8a5f176 (patch) | |
tree | e323035b3bd1aa0863cdf134d68d5a68c91bf092 /klippy/pins.py | |
parent | ae24baf99a8be29fc3850580cd2c282f3d1b055e (diff) | |
download | kutter-df6136802a5ccc06a71272b0a780006da8a5f176.tar.gz kutter-df6136802a5ccc06a71272b0a780006da8a5f176.tar.xz kutter-df6136802a5ccc06a71272b0a780006da8a5f176.zip |
linux: Use enumerations for pin mappings
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, 0 insertions, 1 deletions
diff --git a/klippy/pins.py b/klippy/pins.py index 8cd9f636..30ca9691 100644 --- a/klippy/pins.py +++ b/klippy/pins.py @@ -14,7 +14,6 @@ class error(Exception): ###################################################################### MCU_PINS = { - "linux": {"analog%d" % i: i for i in range(8)}, # XXX } |