Added more manage_inactivity checks

hackerspace-green
Erik van der Zalm 2012-03-11 17:59:44 +01:00
parent 910f4e77a2
commit f5eae52098
1 changed files with 3 additions and 0 deletions

View File

@ -571,6 +571,7 @@ void process_commands()
previous_millis_cmd = millis();
while(millis() < codenum ){
manage_heater();
manage_inactivity(1);
}
break;
case 28: //G28 Home all Axis one at a time
@ -909,6 +910,7 @@ void process_commands()
codenum = millis();
}
manage_heater();
manage_inactivity(1);
LCD_STATUS;
#ifdef TEMP_RESIDENCY_TIME
/* start/restart the TEMP_RESIDENCY_TIME timer whenever we reach target temp for the first time
@ -945,6 +947,7 @@ void process_commands()
codenum = millis();
}
manage_heater();
manage_inactivity(1);
LCD_STATUS;
}
LCD_MESSAGEPGM(MSG_BED_DONE);