Skip to content

Commit

Permalink
MK25S: lcd_calibrate_z_end_stop_manual
Browse files Browse the repository at this point in the history
* Use MK25 value of Z_MAX_POS-3.f for Z_AXIS current position as MK25 extruder is same height as bear MK25S extruder.
  • Loading branch information
vertigo235 committed Jan 21, 2022
1 parent 16cad81 commit dcab425
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3363,12 +3363,7 @@ bool lcd_calibrate_z_end_stop_manual(bool only_z)
calibrated:
// Let the machine think the Z axis is a bit higher than it is, so it will not home into the bed
// during the search for the induction points.
if ((PRINTER_TYPE == PRINTER_MK25) || (PRINTER_TYPE == PRINTER_MK2) || (PRINTER_TYPE == PRINTER_MK2_SNMM)) {
current_position[Z_AXIS] = Z_MAX_POS-3.f;
}
else {
current_position[Z_AXIS] = Z_MAX_POS+4.f;
}
current_position[Z_AXIS] = Z_MAX_POS-3.f;
plan_set_position_curposXYZE();
return true;

Expand Down

0 comments on commit dcab425

Please sign in to comment.