|
@@ -3228,9 +3228,6 @@ void process_commands()
|
|
#ifdef PINDA_THERMISTOR
|
|
#ifdef PINDA_THERMISTOR
|
|
if (true)
|
|
if (true)
|
|
{
|
|
{
|
|
- lcd_show_fullscreen_message_and_wait_P(MSG_TEMP_CAL_WARNING);
|
|
|
|
- bool result = lcd_show_fullscreen_message_yes_no_and_wait_P(MSG_STEEL_SHEET_CHECK, false, false);
|
|
|
|
- if(result) lcd_show_fullscreen_message_and_wait_P(MSG_REMOVE_STEEL_SHEET);
|
|
|
|
if (!(axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS])) {
|
|
if (!(axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS])) {
|
|
// We don't know where we are! HOME!
|
|
// We don't know where we are! HOME!
|
|
// Push the commands to the front of the message queue in the reverse order!
|
|
// Push the commands to the front of the message queue in the reverse order!
|
|
@@ -3239,6 +3236,10 @@ void process_commands()
|
|
enquecommand_front_P((PSTR("G28 W0")));
|
|
enquecommand_front_P((PSTR("G28 W0")));
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
|
|
+ lcd_show_fullscreen_message_and_wait_P(MSG_TEMP_CAL_WARNING);
|
|
|
|
+ bool result = lcd_show_fullscreen_message_yes_no_and_wait_P(MSG_STEEL_SHEET_CHECK, false, false);
|
|
|
|
+ if (result) lcd_show_fullscreen_message_and_wait_P(MSG_REMOVE_STEEL_SHEET);
|
|
|
|
+ lcd_update_enable(true);
|
|
KEEPALIVE_STATE(NOT_BUSY); //no need to print busy messages as we print current temperatures periodicaly
|
|
KEEPALIVE_STATE(NOT_BUSY); //no need to print busy messages as we print current temperatures periodicaly
|
|
SERIAL_ECHOLNPGM("PINDA probe calibration start");
|
|
SERIAL_ECHOLNPGM("PINDA probe calibration start");
|
|
|
|
|