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 Sep 6, 2019
1 parent cf7d3b0 commit f86d03d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3453,12 +3453,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;
}
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
return true;

Expand Down

0 comments on commit f86d03d

Please sign in to comment.