From e169b0e62780709d02fa31fef945aed9e4061231 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Sat, 24 Jun 2023 15:18:07 +0200 Subject: [PATCH] Decrease heater check count to 60000. This fixes #475 --- Marlin/src/inc/Version.h | 2 +- Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/inc/Version.h b/Marlin/src/inc/Version.h index 5f8f3a90..e68a6e66 100644 --- a/Marlin/src/inc/Version.h +++ b/Marlin/src/inc/Version.h @@ -44,7 +44,7 @@ #define CUSTOM_BUILD_VERSION "1.5.2-preview" #ifndef STRING_DISTRIBUTION_DATE - #define STRING_DISTRIBUTION_DATE "2023-06-14" + #define STRING_DISTRIBUTION_DATE "2023-06-24" #endif /** diff --git a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp index 6f7c1bdd..6f1f8ea5 100755 --- a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp @@ -980,7 +980,7 @@ void AnycubicTouchscreenClass::SDCardError() { void AnycubicTouchscreenClass::CheckHeaterError() { if ((getTargetTemp_celsius((extruder_t)E0) < 5) || (getTargetTemp_celsius((extruder_t)E0) > 300)) { - if (HeaterCheckCount > 600000) { + if (HeaterCheckCount > 60000) { HeaterCheckCount = 0; SENDLINE_DBG_PGM("J10", "TFT Serial Debug: Hotend temperature abnormal... J10"); } else {