Giuliano Zaro
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/module/temperature.cpp
|
|
@ -568,7 +568,7 @@ volatile bool Temperature::raw_temps_ready = false; |
|
|
|
#ifndef MAX_CYCLE_TIME_PID_AUTOTUNE |
|
|
|
#define MAX_CYCLE_TIME_PID_AUTOTUNE 20L |
|
|
|
#endif |
|
|
|
if (((ms - t1) + (ms - t2)) > (MAX_CYCLE_TIME_PID_AUTOTUNE * 60L * 1000L)) { |
|
|
|
if ((ms - _MIN(t1, t2)) > (MAX_CYCLE_TIME_PID_AUTOTUNE * 60L * 1000L)) { |
|
|
|
TERN_(DWIN_CREALITY_LCD, Popup_Window_Temperature(0)); |
|
|
|
TERN_(EXTENSIBLE_UI, ExtUI::onPidTuning(ExtUI::result_t::PID_TUNING_TIMEOUT)); |
|
|
|
SERIAL_ECHOLNPGM(STR_PID_TIMEOUT); |
|
|
|