mirror of https://github.com/Desuuuu/klipper.git
tmc: Only check for tmc2130 reset via CS_ACTUAL if IHOLD > 0
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
b4437f8eee
commit
22753f3b38
|
@ -140,6 +140,9 @@ class TMCErrorCheck:
|
|||
irun = self.fields.get_field(self.irun_field)
|
||||
if self.check_timer is None or irun < 4:
|
||||
break
|
||||
if (self.irun_field == "IRUN"
|
||||
and not self.fields.get_field("IHOLD")):
|
||||
break
|
||||
# CS_ACTUAL field of zero - indicates a driver reset
|
||||
count += 1
|
||||
if count >= 3:
|
||||
|
|
Loading…
Reference in New Issue