Skip to content

Commit

Permalink
MK3S: Use 2.0 for calibrate_z_auto procedure
Browse files Browse the repository at this point in the history
* Uses MK3 value (same size as Bear MK3S Extruder)
  • Loading branch information
vertigo235 committed Jan 21, 2022
1 parent b84d3dc commit 16cad81
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Firmware/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2336,12 +2336,7 @@ bool calibrate_z_auto()
plan_buffer_line_destinationXYZE(feedrate / 60);
st_synchronize();
enable_endstops(endstops_enabled);
if (PRINTER_TYPE == PRINTER_MK3) {
current_position[Z_AXIS] = Z_MAX_POS + 2.0;
}
else {
current_position[Z_AXIS] = Z_MAX_POS + 9.0;
}
current_position[Z_AXIS] = Z_MAX_POS + 2.0;
plan_set_position_curposXYZE();
return true;
}
Expand Down

0 comments on commit 16cad81

Please sign in to comment.