Browse Source

Fix G34 probe position (#13251)

Minims 6 years ago
parent
commit
92a4984066
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

@@ -137,7 +137,7 @@ void GcodeSuite::G34() {
137 137
       // For each iteration go through all probe positions (one per Z-Stepper)
138 138
       for (uint8_t zstepper = 0; zstepper < Z_STEPPER_COUNT; ++zstepper) {
139 139
         // Probe a Z height for each stepper
140
-        z_measured[zstepper] = probe_pt(z_auto_align_xpos[zstepper], z_auto_align_ypos[zstepper], PROBE_PT_RAISE, 0, false);
140
+        z_measured[zstepper] = probe_pt(z_auto_align_xpos[zstepper], z_auto_align_ypos[zstepper], PROBE_PT_RAISE, false);
141 141
 
142 142
         // Stop on error
143 143
         if (isnan(z_measured[zstepper])) {

Loading…
Cancel
Save