Decrease heater check count to 60000. This fixes #475

This commit is contained in:
Knutwurst
2023-06-24 15:18:07 +02:00
parent 02d7c31b4c
commit e169b0e627
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@
#define CUSTOM_BUILD_VERSION "1.5.2-preview" #define CUSTOM_BUILD_VERSION "1.5.2-preview"
#ifndef STRING_DISTRIBUTION_DATE #ifndef STRING_DISTRIBUTION_DATE
#define STRING_DISTRIBUTION_DATE "2023-06-14" #define STRING_DISTRIBUTION_DATE "2023-06-24"
#endif #endif
/** /**

View File

@@ -980,7 +980,7 @@ void AnycubicTouchscreenClass::SDCardError() {
void AnycubicTouchscreenClass::CheckHeaterError() { void AnycubicTouchscreenClass::CheckHeaterError() {
if ((getTargetTemp_celsius((extruder_t)E0) < 5) || (getTargetTemp_celsius((extruder_t)E0) > 300)) { if ((getTargetTemp_celsius((extruder_t)E0) < 5) || (getTargetTemp_celsius((extruder_t)E0) > 300)) {
if (HeaterCheckCount > 600000) { if (HeaterCheckCount > 60000) {
HeaterCheckCount = 0; HeaterCheckCount = 0;
SENDLINE_DBG_PGM("J10", "TFT Serial Debug: Hotend temperature abnormal... J10"); SENDLINE_DBG_PGM("J10", "TFT Serial Debug: Hotend temperature abnormal... J10");
} else { } else {