From 1e7b286addc6286d1576ae1a7b68eb2ee2bfb62d Mon Sep 17 00:00:00 2001 From: AnHardt Date: Tue, 9 Jun 2015 15:09:21 +0200 Subject: [PATCH] Fix thermal_runaway_protection() (PR#2266) THERMAL_RUNAWAY_PROTECTION_PERIOD was used instead of THERMAL_RUNAWAY_PROTECTION_BED_PERIOD. Fix for #2253 --- Marlin/temperature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp index 8bdb7647f8..8c148ba705 100644 --- a/Marlin/temperature.cpp +++ b/Marlin/temperature.cpp @@ -562,7 +562,7 @@ void manage_heater() #if TEMP_SENSOR_BED != 0 - #ifdef THERMAL_RUNAWAY_PROTECTION_PERIOD && THERMAL_RUNAWAY_PROTECTION_PERIOD > 0 + #ifdef THERMAL_RUNAWAY_PROTECTION_BED_PERIOD && THERMAL_RUNAWAY_PROTECTION_BED_PERIOD > 0 thermal_runaway_protection(&thermal_runaway_bed_state_machine, &thermal_runaway_bed_timer, current_temperature_bed, target_temperature_bed, 9, THERMAL_RUNAWAY_PROTECTION_BED_PERIOD, THERMAL_RUNAWAY_PROTECTION_BED_HYSTERESIS); #endif