Decrease heater check count to 60000. This fixes #475
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -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 {
|
||||||
|
Reference in New Issue
Block a user