|
@@ -5353,7 +5353,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
|
|
|
homing_flag = true; // keep homing on to avoid babystepping while the LCD is enabled
|
|
|
|
|
|
lcd_update_enable(true);
|
|
|
- KEEPALIVE_STATE(NOT_BUSY); //no need to print busy messages as we print current temperatures periodicaly
|
|
|
SERIAL_ECHOLNPGM("PINDA probe calibration start");
|
|
|
|
|
|
float zero_z;
|
|
@@ -6671,15 +6670,12 @@ Sigma_Exit:
|
|
|
|
|
|
/* See if we are heating up or cooling down */
|
|
|
target_direction = isHeatingHotend(extruder); // true if heating, false if cooling
|
|
|
-
|
|
|
- KEEPALIVE_STATE(NOT_BUSY);
|
|
|
|
|
|
cancel_heatup = false;
|
|
|
|
|
|
wait_for_heater(codenum, extruder); //loops until target temperature is reached
|
|
|
|
|
|
LCD_MESSAGERPGM(_T(MSG_HEATING_COMPLETE));
|
|
|
- KEEPALIVE_STATE(IN_HANDLER);
|
|
|
heating_status = HeatingStatus::EXTRUDER_HEATING_COMPLETE;
|
|
|
if (farm_mode) { prusa_statistics(2); };
|
|
|
|
|
@@ -6722,7 +6718,6 @@ Sigma_Exit:
|
|
|
cancel_heatup = false;
|
|
|
target_direction = isHeatingBed(); // true if heating, false if cooling
|
|
|
|
|
|
- KEEPALIVE_STATE(NOT_BUSY);
|
|
|
while ( (!cancel_heatup) && (target_direction ? (isHeatingBed()) : (isCoolingBed()&&(CooldownNoWait==false))) )
|
|
|
{
|
|
|
if(( _millis() - codenum) > 1000 ) //Print Temp Reading every 1 second while heating up.
|
|
@@ -6745,7 +6740,6 @@ Sigma_Exit:
|
|
|
lcd_update(0);
|
|
|
}
|
|
|
LCD_MESSAGERPGM(_T(MSG_BED_DONE));
|
|
|
- KEEPALIVE_STATE(IN_HANDLER);
|
|
|
heating_status = HeatingStatus::BED_HEATING_COMPLETE;
|
|
|
|
|
|
previous_millis_cmd.start();
|