Browse Source

Endstops always on in G28 (#21441)

espr14 4 years ago
parent
commit
e989bf3b0e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/calibrate/G28.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/G28.cpp View File

@@ -102,7 +102,7 @@
102 102
 
103 103
     current_position.set(0.0, 0.0);
104 104
 
105
-    #if ENABLED(SENSORLESS_HOMING)
105
+    #if ENABLED(SENSORLESS_HOMING) && DISABLED(ENDSTOPS_ALWAYS_ON_DEFAULT)
106 106
       tmc_disable_stallguard(stepperX, stealth_states.x);
107 107
       tmc_disable_stallguard(stepperY, stealth_states.y);
108 108
       #if AXIS_HAS_STALLGUARD(X2)

Loading…
Cancel
Save