Browse Source

Low-priority homing in G34 (#14391)

BigIronGuru 6 years ago
parent
commit
9f136a7c67
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/calibrate/G34_M422.cpp

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

132
     );
132
     );
133
 
133
 
134
     // Home before the alignment procedure
134
     // Home before the alignment procedure
135
-    home_all_axes();
135
+    if (homing_needed()) home_all_axes();
136
 
136
 
137
     // Move the Z coordinate realm towards the positive - dirty trick
137
     // Move the Z coordinate realm towards the positive - dirty trick
138
     current_position[Z_AXIS] -= z_probe * 0.5;
138
     current_position[Z_AXIS] -= z_probe * 0.5;

Loading…
Cancel
Save