|
@@ -1663,7 +1663,7 @@ void setup()
|
|
}
|
|
}
|
|
else if (calibration_status() == CALIBRATION_STATUS_Z_CALIBRATION) {
|
|
else if (calibration_status() == CALIBRATION_STATUS_Z_CALIBRATION) {
|
|
// Show the message.
|
|
// Show the message.
|
|
- lcd_show_fullscreen_message_and_wait_P(_T(MSG_FOLLOW_CALIBRATION_FLOW));
|
|
|
|
|
|
+ lcd_show_fullscreen_message_and_wait_P(_T(MSG_FOLLOW_Z_CALIBRATION_FLOW));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -3140,11 +3140,6 @@ void gcode_M600(bool automatic, float x_position, float y_position, float z_shif
|
|
plan_buffer_line(lastpos[X_AXIS], lastpos[Y_AXIS], lastpos[Z_AXIS], current_position[E_AXIS], FILAMENTCHANGE_ZFEED, active_extruder);
|
|
plan_buffer_line(lastpos[X_AXIS], lastpos[Y_AXIS], lastpos[Z_AXIS], current_position[E_AXIS], FILAMENTCHANGE_ZFEED, active_extruder);
|
|
st_synchronize();
|
|
st_synchronize();
|
|
|
|
|
|
- //Unretract
|
|
|
|
- current_position[E_AXIS]= current_position[E_AXIS] - e_shift;
|
|
|
|
- plan_buffer_line(lastpos[X_AXIS], lastpos[Y_AXIS], lastpos[Z_AXIS], current_position[E_AXIS], FILAMENTCHANGE_RFEED, active_extruder);
|
|
|
|
- st_synchronize();
|
|
|
|
-
|
|
|
|
//Set E position to original
|
|
//Set E position to original
|
|
plan_set_e_position(lastpos[E_AXIS]);
|
|
plan_set_e_position(lastpos[E_AXIS]);
|
|
|
|
|