diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-06-23 11:26:56 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-06-23 11:27:18 -0400 |
commit | 4fb4a13fd78d1478577301986dd0d651116642d7 (patch) | |
tree | bea25bd54a328ed1fa54a9b63fd18ce78cf8f169 /klippy/extras/endstop_phase.py | |
parent | ec9fad758a5951c508efbd1e4c346ec8d05a3658 (diff) | |
download | kutter-4fb4a13fd78d1478577301986dd0d651116642d7.tar.gz kutter-4fb4a13fd78d1478577301986dd0d651116642d7.tar.xz kutter-4fb4a13fd78d1478577301986dd0d651116642d7.zip |
endstop_phase: Add tmc2209 and tmc5160 to list of tmc drivers
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/endstop_phase.py')
-rw-r--r-- | klippy/extras/endstop_phase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/endstop_phase.py b/klippy/extras/endstop_phase.py index c0408262..89ee1891 100644 --- a/klippy/extras/endstop_phase.py +++ b/klippy/extras/endstop_phase.py @@ -6,7 +6,7 @@ import math, logging import homing -TRINAMIC_DRIVERS = ["tmc2130", "tmc2208", "tmc2660"] +TRINAMIC_DRIVERS = ["tmc2130", "tmc2208", "tmc2209", "tmc2660", "tmc5160"] class EndstopPhase: def __init__(self, config): |