We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e19f6 commit 2c41857Copy full SHA for 2c41857
Firmware/ultralcd.cpp
@@ -6307,8 +6307,10 @@ void lcd_print_stop()
6307
6308
lcd_cooldown(); //turns off heaters and fan; goes to status screen.
6309
6310
- current_position[Z_AXIS] += 10; //lift Z.
6311
- plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60);
+ if (axis_known_position[Z_AXIS]) {
+ current_position[Z_AXIS] += 50; //lift Z.
6312
+ plan_buffer_line_curposXYZE(manual_feedrate[Z_AXIS] / 60);
6313
+ }
6314
6315
if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS]) //if axis are homed, move to parked position.
6316
{
0 commit comments