From a0f00367fe551d4973c0394ec321c7f37cb5e492 Mon Sep 17 00:00:00 2001 From: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com> Date: Mon, 16 Sep 2019 22:22:11 -0400 Subject: [PATCH] Update max bed thermal limits for large dc bed at high temps --- Marlin/Configuration_adv.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index d7f191b707..84f3c33848 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -166,12 +166,20 @@ */ #if ENABLED(THERMAL_PROTECTION_BED) #if(ENABLED(BedDC)) + #if EITHER(MachineS5, MachineCR10Max) + #define THERMAL_PROTECTION_BED_PERIOD 240 // Seconds + #define THERMAL_PROTECTION_BED_HYSTERESIS 4 // Degrees Celsius - #define THERMAL_PROTECTION_BED_PERIOD 50 // Seconds - #define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius + #define WATCH_BED_TEMP_PERIOD 240 // Seconds + #define WATCH_BED_TEMP_INCREASE 4 // Degrees Celsius - #define WATCH_BED_TEMP_PERIOD 180 // Seconds - #define WATCH_BED_TEMP_INCREASE 2 // Degrees Celsius + #else + #define THERMAL_PROTECTION_BED_PERIOD 50 // Seconds + #define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius + + #define WATCH_BED_TEMP_PERIOD 180 // Seconds + #define WATCH_BED_TEMP_INCREASE 2 // Degrees Celsius + #endif #else #define THERMAL_PROTECTION_BED_PERIOD 30 // Seconds