Skip to content

Commit 753f663

Browse files
thisiskeithbvgadreau
authored andcommitted
If needed, home before G34 (MarlinFirmware#19713)
1 parent a63c31c commit 753f663

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Marlin/src/gcode/calibrate/G34.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838

3939
void GcodeSuite::G34() {
4040

41-
if (homing_needed()) return;
41+
// Home before the alignment procedure
42+
if (!all_axes_known()) home_all_axes();
4243

4344
SET_SOFT_ENDSTOP_LOOSE(true);
4445
TEMPORARY_BED_LEVELING_STATE(false);

0 commit comments

Comments
 (0)