From 4fb4a13fd78d1478577301986dd0d651116642d7 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 23 Jun 2019 11:26:56 -0400 Subject: [PATCH] endstop_phase: Add tmc2209 and tmc5160 to list of tmc drivers Signed-off-by: Kevin O'Connor --- klippy/extras/endstop_phase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):