Temperature 'autostart' => 'auto_job'

This commit is contained in:
Scott Lahteine
2020-11-07 17:55:31 -06:00
parent 18fb4b1ce1
commit dcb0f5dc3b
5 changed files with 11 additions and 11 deletions

View File

@ -2154,7 +2154,7 @@ void Temperature::disable_all_heaters() {
#if ENABLED(PRINTJOB_TIMER_AUTOSTART)
bool Temperature::over_autostart_threshold() {
bool Temperature::auto_job_over_threshold() {
#if HAS_HOTEND
HOTEND_LOOP() if (degTargetHotend(e) > (EXTRUDE_MINTEMP) / 2) return true;
#endif
@ -2162,8 +2162,8 @@ void Temperature::disable_all_heaters() {
|| TERN0(HAS_HEATED_CHAMBER, degTargetChamber() > CHAMBER_MINTEMP);
}
void Temperature::check_timer_autostart(const bool can_start, const bool can_stop) {
if (over_autostart_threshold()) {
void Temperature::auto_job_check_timer(const bool can_start, const bool can_stop) {
if (auto_job_over_threshold()) {
if (can_start) startOrResumeJob();
}
else if (can_stop) {

View File

@ -731,8 +731,8 @@ class Temperature {
/**
* Methods to check if heaters are enabled, indicating an active job
*/
static bool over_autostart_threshold();
static void check_timer_autostart(const bool can_start, const bool can_stop);
static bool auto_job_over_threshold();
static void auto_job_check_timer(const bool can_start, const bool can_stop);
#endif
/**