From 483822f3aa0108e87884160f62761d2a8655eebd Mon Sep 17 00:00:00 2001 From: Stephan Date: Tue, 7 May 2019 02:55:01 +0200 Subject: [PATCH] Fix some THERMAL_PROTECTION_CHAMBER issues (#13678) --- Marlin/Configuration_adv.h | 1 - Marlin/src/gcode/host/M115.cpp | 2 +- Marlin/src/module/temperature.cpp | 138 +++++++++--------- config/default/Configuration_adv.h | 1 - .../3DFabXYZ/Migbot/Configuration_adv.h | 1 - .../AlephObjects/TAZ4/Configuration_adv.h | 1 - .../AliExpress/UM2pExt/Configuration_adv.h | 1 - config/examples/Anet/A2/Configuration_adv.h | 1 - .../examples/Anet/A2plus/Configuration_adv.h | 1 - config/examples/Anet/A6/Configuration_adv.h | 1 - config/examples/Anet/A8/Configuration_adv.h | 1 - .../examples/AnyCubic/i3/Configuration_adv.h | 1 - config/examples/ArmEd/Configuration_adv.h | 1 - .../BIBO/TouchX/cyclops/Configuration_adv.h | 1 - .../BIBO/TouchX/default/Configuration_adv.h | 1 - .../examples/BQ/Hephestos/Configuration_adv.h | 1 - .../BQ/Hephestos_2/Configuration_adv.h | 1 - config/examples/BQ/WITBOX/Configuration_adv.h | 1 - config/examples/Cartesio/Configuration_adv.h | 1 - .../Creality/CR-10/Configuration_adv.h | 1 - .../Creality/CR-10S/Configuration_adv.h | 1 - .../Creality/CR-10_5S/Configuration_adv.h | 1 - .../Creality/CR-10mini/Configuration_adv.h | 1 - .../Creality/CR-8/Configuration_adv.h | 1 - .../Creality/Ender-2/Configuration_adv.h | 1 - .../Creality/Ender-3/Configuration_adv.h | 1 - .../Creality/Ender-4/Configuration_adv.h | 1 - .../examples/Einstart-S/Configuration_adv.h | 1 - config/examples/Felix/Configuration_adv.h | 1 - .../FlashForge/CreatorPro/Configuration_adv.h | 1 - .../FolgerTech/i3-2020/Configuration_adv.h | 1 - .../Formbot/Raptor/Configuration_adv.h | 1 - .../Formbot/T_Rex_2+/Configuration_adv.h | 1 - .../Formbot/T_Rex_3/Configuration_adv.h | 1 - .../Geeetech/A10M/Configuration_adv.h | 1 - .../Geeetech/A20M/Configuration_adv.h | 1 - .../Geeetech/MeCreator2/Configuration_adv.h | 1 - .../Prusa i3 Pro C/Configuration_adv.h | 1 - .../Prusa i3 Pro W/Configuration_adv.h | 1 - .../Infitary/i3-M508/Configuration_adv.h | 1 - .../examples/JGAurora/A5/Configuration_adv.h | 1 - .../examples/MakerParts/Configuration_adv.h | 1 - .../examples/Malyan/M150/Configuration_adv.h | 1 - .../examples/Malyan/M200/Configuration_adv.h | 1 - .../Micromake/C1/enhanced/Configuration_adv.h | 1 - config/examples/Mks/Robin/Configuration_adv.h | 1 - config/examples/Mks/Sbase/Configuration_adv.h | 1 - .../RapideLite/RL200/Configuration_adv.h | 1 - config/examples/RigidBot/Configuration_adv.h | 1 - config/examples/SCARA/Configuration_adv.h | 1 - .../Black_STM32F407VET6/Configuration_adv.h | 1 - .../examples/Sanguinololu/Configuration_adv.h | 1 - config/examples/TheBorg/Configuration_adv.h | 1 - config/examples/TinyBoy2/Configuration_adv.h | 1 - .../examples/Tronxy/X3A/Configuration_adv.h | 1 - .../Tronxy/X5S-2E/Configuration_adv.h | 1 - .../UltiMachine/Archim1/Configuration_adv.h | 1 - .../UltiMachine/Archim2/Configuration_adv.h | 1 - .../examples/VORONDesign/Configuration_adv.h | 1 - .../Velleman/K8200/Configuration_adv.h | 1 - .../Velleman/K8400/Configuration_adv.h | 1 - .../WASP/PowerWASP/Configuration_adv.h | 1 - .../Wanhao/Duplicator 6/Configuration_adv.h | 1 - .../delta/Anycubic/Kossel/Configuration_adv.h | 1 - .../FLSUN/auto_calibrate/Configuration_adv.h | 1 - .../delta/FLSUN/kossel/Configuration_adv.h | 1 - .../FLSUN/kossel_mini/Configuration_adv.h | 1 - .../Geeetech/Rostock 301/Configuration_adv.h | 1 - .../delta/MKS/SBASE/Configuration_adv.h | 1 - .../Tevo Little Monster/Configuration_adv.h | 1 - .../delta/generic/Configuration_adv.h | 1 - .../delta/kossel_mini/Configuration_adv.h | 1 - .../delta/kossel_xl/Configuration_adv.h | 1 - .../gCreate/gMax1.5+/Configuration_adv.h | 1 - config/examples/makibox/Configuration_adv.h | 1 - .../tvrrug/Round2/Configuration_adv.h | 1 - config/examples/wt150/Configuration_adv.h | 1 - 77 files changed, 73 insertions(+), 142 deletions(-) diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 292babc494..1b59583ad0 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/Marlin/src/gcode/host/M115.cpp b/Marlin/src/gcode/host/M115.cpp index c3702ab481..591f5ed7b6 100644 --- a/Marlin/src/gcode/host/M115.cpp +++ b/Marlin/src/gcode/host/M115.cpp @@ -152,7 +152,7 @@ void GcodeSuite::M115() { // THERMAL_PROTECTION cap_line(PSTR("THERMAL_PROTECTION") - #if BOTH(THERMAL_PROTECTION_HOTENDS, THERMAL_PROTECTION_BED) + #if ENABLED(THERMAL_PROTECTION_HOTENDS) && (ENABLED(THERMAL_PROTECTION_BED) || !HAS_HEATED_BED) && (ENABLED(THERMAL_PROTECTION_CHAMBER) || !HAS_HEATED_CHAMBER) , true #endif ); diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index b349a3dea3..a134465c9f 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -233,8 +233,8 @@ hotend_info_t Temperature::temp_hotend[HOTENDS]; // = { 0 } #endif #if WATCH_CHAMBER heater_watch_t Temperature::watch_chamber = { 0 }; - millis_t Temperature::next_chamber_check_ms; #endif + millis_t Temperature::next_chamber_check_ms; #endif // HAS_HEATED_CHAMBER #endif // HAS_TEMP_CHAMBER @@ -1058,56 +1058,61 @@ void Temperature::manage_heater() { } #endif // WATCH_BED - #if DISABLED(PIDTEMPBED) - if (PENDING(ms, next_bed_check_ms) + do { + + #if DISABLED(PIDTEMPBED) + if (PENDING(ms, next_bed_check_ms) + #if BOTH(PROBING_HEATERS_OFF, BED_LIMIT_SWITCHING) + && paused == last_pause_state + #endif + ) break; + next_bed_check_ms = ms + BED_CHECK_INTERVAL; #if BOTH(PROBING_HEATERS_OFF, BED_LIMIT_SWITCHING) - && paused == last_pause_state + last_pause_state = paused; #endif - ) return; - next_bed_check_ms = ms + BED_CHECK_INTERVAL; - #if BOTH(PROBING_HEATERS_OFF, BED_LIMIT_SWITCHING) - last_pause_state = paused; #endif - #endif - #if HEATER_IDLE_HANDLER - bed_idle.update(ms); - #endif + #if HEATER_IDLE_HANDLER + bed_idle.update(ms); + #endif - #if HAS_THERMALLY_PROTECTED_BED - thermal_runaway_protection(tr_state_machine_bed, temp_bed.current, temp_bed.target, -1, THERMAL_PROTECTION_BED_PERIOD, THERMAL_PROTECTION_BED_HYSTERESIS); - #endif + #if HAS_THERMALLY_PROTECTED_BED + thermal_runaway_protection(tr_state_machine_bed, temp_bed.current, temp_bed.target, -1, THERMAL_PROTECTION_BED_PERIOD, THERMAL_PROTECTION_BED_HYSTERESIS); + #endif - #if HEATER_IDLE_HANDLER - if (bed_idle.timed_out) { - temp_bed.soft_pwm_amount = 0; - #if DISABLED(PIDTEMPBED) - WRITE_HEATER_BED(LOW); - #endif - } - else - #endif - { - #if ENABLED(PIDTEMPBED) - temp_bed.soft_pwm_amount = WITHIN(temp_bed.current, BED_MINTEMP, BED_MAXTEMP) ? (int)get_pid_output_bed() >> 1 : 0; - #else - // Check if temperature is within the correct band - if (WITHIN(temp_bed.current, BED_MINTEMP, BED_MAXTEMP)) { - #if ENABLED(BED_LIMIT_SWITCHING) - if (temp_bed.current >= temp_bed.target + BED_HYSTERESIS) - temp_bed.soft_pwm_amount = 0; - else if (temp_bed.current <= temp_bed.target - (BED_HYSTERESIS)) - temp_bed.soft_pwm_amount = MAX_BED_POWER >> 1; - #else // !PIDTEMPBED && !BED_LIMIT_SWITCHING - temp_bed.soft_pwm_amount = temp_bed.current < temp_bed.target ? MAX_BED_POWER >> 1 : 0; + #if HEATER_IDLE_HANDLER + if (bed_idle.timed_out) { + temp_bed.soft_pwm_amount = 0; + #if DISABLED(PIDTEMPBED) + WRITE_HEATER_BED(LOW); #endif } - else { - temp_bed.soft_pwm_amount = 0; - WRITE_HEATER_BED(LOW); - } + else #endif - } + { + #if ENABLED(PIDTEMPBED) + temp_bed.soft_pwm_amount = WITHIN(temp_bed.current, BED_MINTEMP, BED_MAXTEMP) ? (int)get_pid_output_bed() >> 1 : 0; + #else + // Check if temperature is within the correct band + if (WITHIN(temp_bed.current, BED_MINTEMP, BED_MAXTEMP)) { + #if ENABLED(BED_LIMIT_SWITCHING) + if (temp_bed.current >= temp_bed.target + BED_HYSTERESIS) + temp_bed.soft_pwm_amount = 0; + else if (temp_bed.current <= temp_bed.target - (BED_HYSTERESIS)) + temp_bed.soft_pwm_amount = MAX_BED_POWER >> 1; + #else // !PIDTEMPBED && !BED_LIMIT_SWITCHING + temp_bed.soft_pwm_amount = temp_bed.current < temp_bed.target ? MAX_BED_POWER >> 1 : 0; + #endif + } + else { + temp_bed.soft_pwm_amount = 0; + WRITE_HEATER_BED(LOW); + } + #endif + } + + } while (false); + #endif // HAS_HEATED_BED #if HAS_HEATED_CHAMBER @@ -1123,35 +1128,36 @@ void Temperature::manage_heater() { #if WATCH_CHAMBER // Make sure temperature is increasing - if (watch_chamber.elapsed(ms)) { // Time to check the chamber? - if (degChamber() < watch_chamber.target) // Failed to increase enough? + if (watch_chamber.elapsed(ms)) { // Time to check the chamber? + if (degChamber() < watch_chamber.target) // Failed to increase enough? _temp_error(-2, PSTR(MSG_T_HEATING_FAILED), TEMP_ERR_PSTR(MSG_HEATING_FAILED_LCD, -2)); else - start_watching_chamber(); // Start again if the target is still far off + start_watching_chamber(); // Start again if the target is still far off } - #endif // WATCH_CHAMBER + #endif - if (PENDING(ms, next_chamber_check_ms)) return; - next_chamber_check_ms = ms + CHAMBER_CHECK_INTERVAL; + if (ELAPSED(ms, next_chamber_check_ms)) { + next_chamber_check_ms = ms + CHAMBER_CHECK_INTERVAL; - if (WITHIN(temp_chamber.current, CHAMBER_MINTEMP, CHAMBER_MAXTEMP)) { - #if ENABLED(CHAMBER_LIMIT_SWITCHING) - if (temp_chamber.current >= temp_chamber.target + TEMP_CHAMBER_HYSTERESIS) - temp_chamber.soft_pwm_amount = 0; - else if (temp_chamber.current <= temp_chamber.target - (TEMP_CHAMBER_HYSTERESIS)) - temp_chamber.soft_pwm_amount = MAX_CHAMBER_POWER >> 1; - #else - temp_chamber.soft_pwm_amount = temp_chamber.current < temp_chamber.target ? MAX_CHAMBER_POWER >> 1 : 0; + if (WITHIN(temp_chamber.current, CHAMBER_MINTEMP, CHAMBER_MAXTEMP)) { + #if ENABLED(CHAMBER_LIMIT_SWITCHING) + if (temp_chamber.current >= temp_chamber.target + TEMP_CHAMBER_HYSTERESIS) + temp_chamber.soft_pwm_amount = 0; + else if (temp_chamber.current <= temp_chamber.target - (TEMP_CHAMBER_HYSTERESIS)) + temp_chamber.soft_pwm_amount = MAX_CHAMBER_POWER >> 1; + #else + temp_chamber.soft_pwm_amount = temp_chamber.current < temp_chamber.target ? MAX_CHAMBER_POWER >> 1 : 0; + #endif + } + else { + temp_chamber.soft_pwm_amount = 0; + WRITE_HEATER_CHAMBER(LOW); + } + + #if ENABLED(THERMAL_PROTECTION_CHAMBER) + thermal_runaway_protection(tr_state_machine_chamber, temp_chamber.current, temp_chamber.target, -2, THERMAL_PROTECTION_CHAMBER_PERIOD, THERMAL_PROTECTION_CHAMBER_HYSTERESIS); #endif } - else { - temp_chamber.soft_pwm_amount = 0; - WRITE_HEATER_CHAMBER(LOW); - } - - #if ENABLED(THERMAL_PROTECTION_CHAMBER) - thermal_runaway_protection(tr_state_machine_chamber, temp_chamber.current, temp_chamber.target, -2, THERMAL_PROTECTION_CHAMBER_PERIOD, THERMAL_PROTECTION_CHAMBER_HYSTERESIS); - #endif // TODO: Implement true PID pwm //temp_bed.soft_pwm_amount = WITHIN(temp_chamber.current, CHAMBER_MINTEMP, CHAMBER_MAXTEMP) ? (int)get_pid_output_chamber() >> 1 : 0; @@ -1788,8 +1794,8 @@ void Temperature::init() { #if WATCH_CHAMBER /** - * Start Heating Sanity Check for hotends that are below - * their target temperature by a configurable margin. + * Start Heating Sanity Check for chamber that is below + * its target temperature by a configurable margin. * This is called when the temperature is set. (M141, M191) */ void Temperature::start_watching_chamber() { diff --git a/config/default/Configuration_adv.h b/config/default/Configuration_adv.h index 8c5fd37940..5c9b6dc403 100644 --- a/config/default/Configuration_adv.h +++ b/config/default/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h index 6bbc8867c8..fa3ab0d50e 100644 --- a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h +++ b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/AlephObjects/TAZ4/Configuration_adv.h b/config/examples/AlephObjects/TAZ4/Configuration_adv.h index 8a22f62952..dd6dd9ee82 100644 --- a/config/examples/AlephObjects/TAZ4/Configuration_adv.h +++ b/config/examples/AlephObjects/TAZ4/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/AliExpress/UM2pExt/Configuration_adv.h b/config/examples/AliExpress/UM2pExt/Configuration_adv.h index ee90cb371b..2e5d8f9335 100644 --- a/config/examples/AliExpress/UM2pExt/Configuration_adv.h +++ b/config/examples/AliExpress/UM2pExt/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Anet/A2/Configuration_adv.h b/config/examples/Anet/A2/Configuration_adv.h index 51206b9446..261688ecd9 100644 --- a/config/examples/Anet/A2/Configuration_adv.h +++ b/config/examples/Anet/A2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Anet/A2plus/Configuration_adv.h b/config/examples/Anet/A2plus/Configuration_adv.h index 51206b9446..261688ecd9 100644 --- a/config/examples/Anet/A2plus/Configuration_adv.h +++ b/config/examples/Anet/A2plus/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Anet/A6/Configuration_adv.h b/config/examples/Anet/A6/Configuration_adv.h index 423156a53b..4315ea8821 100644 --- a/config/examples/Anet/A6/Configuration_adv.h +++ b/config/examples/Anet/A6/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Anet/A8/Configuration_adv.h b/config/examples/Anet/A8/Configuration_adv.h index 824af0ef5d..38721d8269 100644 --- a/config/examples/Anet/A8/Configuration_adv.h +++ b/config/examples/Anet/A8/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/AnyCubic/i3/Configuration_adv.h b/config/examples/AnyCubic/i3/Configuration_adv.h index ddf2e3c879..24e7c3bd6b 100644 --- a/config/examples/AnyCubic/i3/Configuration_adv.h +++ b/config/examples/AnyCubic/i3/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/ArmEd/Configuration_adv.h b/config/examples/ArmEd/Configuration_adv.h index 043de462f2..64f889640e 100644 --- a/config/examples/ArmEd/Configuration_adv.h +++ b/config/examples/ArmEd/Configuration_adv.h @@ -112,7 +112,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h index 1d96e4b331..788f306d66 100644 --- a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h +++ b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/BIBO/TouchX/default/Configuration_adv.h b/config/examples/BIBO/TouchX/default/Configuration_adv.h index 1d1d25d904..e0ccad2042 100644 --- a/config/examples/BIBO/TouchX/default/Configuration_adv.h +++ b/config/examples/BIBO/TouchX/default/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/BQ/Hephestos/Configuration_adv.h b/config/examples/BQ/Hephestos/Configuration_adv.h index ba0f47b62c..c6e7a901c2 100644 --- a/config/examples/BQ/Hephestos/Configuration_adv.h +++ b/config/examples/BQ/Hephestos/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/BQ/Hephestos_2/Configuration_adv.h b/config/examples/BQ/Hephestos_2/Configuration_adv.h index 20abea7208..2c7a0ba7b4 100644 --- a/config/examples/BQ/Hephestos_2/Configuration_adv.h +++ b/config/examples/BQ/Hephestos_2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/BQ/WITBOX/Configuration_adv.h b/config/examples/BQ/WITBOX/Configuration_adv.h index ba0f47b62c..c6e7a901c2 100644 --- a/config/examples/BQ/WITBOX/Configuration_adv.h +++ b/config/examples/BQ/WITBOX/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Cartesio/Configuration_adv.h b/config/examples/Cartesio/Configuration_adv.h index 3597870daf..98cd9681a3 100644 --- a/config/examples/Cartesio/Configuration_adv.h +++ b/config/examples/Cartesio/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/CR-10/Configuration_adv.h b/config/examples/Creality/CR-10/Configuration_adv.h index b1da67d512..862a41ca11 100644 --- a/config/examples/Creality/CR-10/Configuration_adv.h +++ b/config/examples/Creality/CR-10/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/CR-10S/Configuration_adv.h b/config/examples/Creality/CR-10S/Configuration_adv.h index bdb24bd178..8435cc9373 100644 --- a/config/examples/Creality/CR-10S/Configuration_adv.h +++ b/config/examples/Creality/CR-10S/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/CR-10_5S/Configuration_adv.h b/config/examples/Creality/CR-10_5S/Configuration_adv.h index e00592e784..de11ecdadf 100644 --- a/config/examples/Creality/CR-10_5S/Configuration_adv.h +++ b/config/examples/Creality/CR-10_5S/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/CR-10mini/Configuration_adv.h b/config/examples/Creality/CR-10mini/Configuration_adv.h index 9a9432c4d7..7dea72e557 100644 --- a/config/examples/Creality/CR-10mini/Configuration_adv.h +++ b/config/examples/Creality/CR-10mini/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/CR-8/Configuration_adv.h b/config/examples/Creality/CR-8/Configuration_adv.h index 3f353819ef..7d92568c89 100644 --- a/config/examples/Creality/CR-8/Configuration_adv.h +++ b/config/examples/Creality/CR-8/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/Ender-2/Configuration_adv.h b/config/examples/Creality/Ender-2/Configuration_adv.h index cfd5c07def..9cfee47e3f 100644 --- a/config/examples/Creality/Ender-2/Configuration_adv.h +++ b/config/examples/Creality/Ender-2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/Ender-3/Configuration_adv.h b/config/examples/Creality/Ender-3/Configuration_adv.h index 58dab4c0ad..b5fcaa5483 100644 --- a/config/examples/Creality/Ender-3/Configuration_adv.h +++ b/config/examples/Creality/Ender-3/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Creality/Ender-4/Configuration_adv.h b/config/examples/Creality/Ender-4/Configuration_adv.h index 306cf4e05f..47fb36a173 100644 --- a/config/examples/Creality/Ender-4/Configuration_adv.h +++ b/config/examples/Creality/Ender-4/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Einstart-S/Configuration_adv.h b/config/examples/Einstart-S/Configuration_adv.h index 3d9c5a1fa8..12ee88475a 100644 --- a/config/examples/Einstart-S/Configuration_adv.h +++ b/config/examples/Einstart-S/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Felix/Configuration_adv.h b/config/examples/Felix/Configuration_adv.h index 768c72b863..7eebaf121c 100644 --- a/config/examples/Felix/Configuration_adv.h +++ b/config/examples/Felix/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/FlashForge/CreatorPro/Configuration_adv.h b/config/examples/FlashForge/CreatorPro/Configuration_adv.h index aa236f4ceb..5907ef67bd 100644 --- a/config/examples/FlashForge/CreatorPro/Configuration_adv.h +++ b/config/examples/FlashForge/CreatorPro/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/FolgerTech/i3-2020/Configuration_adv.h b/config/examples/FolgerTech/i3-2020/Configuration_adv.h index f7ee66b83b..28f1b14cfb 100644 --- a/config/examples/FolgerTech/i3-2020/Configuration_adv.h +++ b/config/examples/FolgerTech/i3-2020/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Formbot/Raptor/Configuration_adv.h b/config/examples/Formbot/Raptor/Configuration_adv.h index f97162a7bd..da1c8e49fa 100644 --- a/config/examples/Formbot/Raptor/Configuration_adv.h +++ b/config/examples/Formbot/Raptor/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h index 4789b37381..af5a62747b 100644 --- a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h +++ b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Formbot/T_Rex_3/Configuration_adv.h b/config/examples/Formbot/T_Rex_3/Configuration_adv.h index f6ce573abd..cd71f90164 100644 --- a/config/examples/Formbot/T_Rex_3/Configuration_adv.h +++ b/config/examples/Formbot/T_Rex_3/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Geeetech/A10M/Configuration_adv.h b/config/examples/Geeetech/A10M/Configuration_adv.h index 8fb7f1e0cb..1df486e150 100644 --- a/config/examples/Geeetech/A10M/Configuration_adv.h +++ b/config/examples/Geeetech/A10M/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Geeetech/A20M/Configuration_adv.h b/config/examples/Geeetech/A20M/Configuration_adv.h index 96c43dfe70..4201f7eff5 100644 --- a/config/examples/Geeetech/A20M/Configuration_adv.h +++ b/config/examples/Geeetech/A20M/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Geeetech/MeCreator2/Configuration_adv.h b/config/examples/Geeetech/MeCreator2/Configuration_adv.h index 3b07bdc121..d8a507fe21 100644 --- a/config/examples/Geeetech/MeCreator2/Configuration_adv.h +++ b/config/examples/Geeetech/MeCreator2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h index 8367fa205e..cdbe0b0aeb 100644 --- a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h +++ b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h index 8367fa205e..cdbe0b0aeb 100644 --- a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h +++ b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Infitary/i3-M508/Configuration_adv.h b/config/examples/Infitary/i3-M508/Configuration_adv.h index 8f85a03c4a..5390410a88 100644 --- a/config/examples/Infitary/i3-M508/Configuration_adv.h +++ b/config/examples/Infitary/i3-M508/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/JGAurora/A5/Configuration_adv.h b/config/examples/JGAurora/A5/Configuration_adv.h index 633e682e6a..d970fad09d 100644 --- a/config/examples/JGAurora/A5/Configuration_adv.h +++ b/config/examples/JGAurora/A5/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/MakerParts/Configuration_adv.h b/config/examples/MakerParts/Configuration_adv.h index d544a97425..a64386776f 100644 --- a/config/examples/MakerParts/Configuration_adv.h +++ b/config/examples/MakerParts/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Malyan/M150/Configuration_adv.h b/config/examples/Malyan/M150/Configuration_adv.h index c830a23dc5..9f20f298e7 100644 --- a/config/examples/Malyan/M150/Configuration_adv.h +++ b/config/examples/Malyan/M150/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Malyan/M200/Configuration_adv.h b/config/examples/Malyan/M200/Configuration_adv.h index d269362102..6cf61902c2 100644 --- a/config/examples/Malyan/M200/Configuration_adv.h +++ b/config/examples/Malyan/M200/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Micromake/C1/enhanced/Configuration_adv.h b/config/examples/Micromake/C1/enhanced/Configuration_adv.h index 1984182d22..c82680ab25 100644 --- a/config/examples/Micromake/C1/enhanced/Configuration_adv.h +++ b/config/examples/Micromake/C1/enhanced/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Mks/Robin/Configuration_adv.h b/config/examples/Mks/Robin/Configuration_adv.h index 2f6bbbd620..b984c9d857 100644 --- a/config/examples/Mks/Robin/Configuration_adv.h +++ b/config/examples/Mks/Robin/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Mks/Sbase/Configuration_adv.h b/config/examples/Mks/Sbase/Configuration_adv.h index b2bcd2e2a0..9f1bdcdb64 100644 --- a/config/examples/Mks/Sbase/Configuration_adv.h +++ b/config/examples/Mks/Sbase/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/RapideLite/RL200/Configuration_adv.h b/config/examples/RapideLite/RL200/Configuration_adv.h index c3b7687365..a16988439c 100644 --- a/config/examples/RapideLite/RL200/Configuration_adv.h +++ b/config/examples/RapideLite/RL200/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/RigidBot/Configuration_adv.h b/config/examples/RigidBot/Configuration_adv.h index 85dc177a90..33454e09a7 100644 --- a/config/examples/RigidBot/Configuration_adv.h +++ b/config/examples/RigidBot/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/SCARA/Configuration_adv.h b/config/examples/SCARA/Configuration_adv.h index 861417c320..30c9e63e07 100644 --- a/config/examples/SCARA/Configuration_adv.h +++ b/config/examples/SCARA/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h b/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h index 60a64d6b98..3b0f830fdc 100644 --- a/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h +++ b/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Sanguinololu/Configuration_adv.h b/config/examples/Sanguinololu/Configuration_adv.h index 59d652e519..f325d34deb 100644 --- a/config/examples/Sanguinololu/Configuration_adv.h +++ b/config/examples/Sanguinololu/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/TheBorg/Configuration_adv.h b/config/examples/TheBorg/Configuration_adv.h index bc663a5768..5610b4ba17 100644 --- a/config/examples/TheBorg/Configuration_adv.h +++ b/config/examples/TheBorg/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/TinyBoy2/Configuration_adv.h b/config/examples/TinyBoy2/Configuration_adv.h index 37df415b1d..22917c2d2b 100644 --- a/config/examples/TinyBoy2/Configuration_adv.h +++ b/config/examples/TinyBoy2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Tronxy/X3A/Configuration_adv.h b/config/examples/Tronxy/X3A/Configuration_adv.h index 40590226fc..115982d786 100644 --- a/config/examples/Tronxy/X3A/Configuration_adv.h +++ b/config/examples/Tronxy/X3A/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Tronxy/X5S-2E/Configuration_adv.h b/config/examples/Tronxy/X5S-2E/Configuration_adv.h index bfb1b2326e..9153c61efb 100644 --- a/config/examples/Tronxy/X5S-2E/Configuration_adv.h +++ b/config/examples/Tronxy/X5S-2E/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/UltiMachine/Archim1/Configuration_adv.h b/config/examples/UltiMachine/Archim1/Configuration_adv.h index e3c835da89..a2eefe0917 100644 --- a/config/examples/UltiMachine/Archim1/Configuration_adv.h +++ b/config/examples/UltiMachine/Archim1/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/UltiMachine/Archim2/Configuration_adv.h b/config/examples/UltiMachine/Archim2/Configuration_adv.h index 5488eeb602..473032a7ce 100644 --- a/config/examples/UltiMachine/Archim2/Configuration_adv.h +++ b/config/examples/UltiMachine/Archim2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/VORONDesign/Configuration_adv.h b/config/examples/VORONDesign/Configuration_adv.h index da6796ba75..fe3c1ffcaa 100644 --- a/config/examples/VORONDesign/Configuration_adv.h +++ b/config/examples/VORONDesign/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Velleman/K8200/Configuration_adv.h b/config/examples/Velleman/K8200/Configuration_adv.h index 617135c255..a2cc6f2a54 100644 --- a/config/examples/Velleman/K8200/Configuration_adv.h +++ b/config/examples/Velleman/K8200/Configuration_adv.h @@ -117,7 +117,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Velleman/K8400/Configuration_adv.h b/config/examples/Velleman/K8400/Configuration_adv.h index 10ab7548e8..e4909a138d 100644 --- a/config/examples/Velleman/K8400/Configuration_adv.h +++ b/config/examples/Velleman/K8400/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/WASP/PowerWASP/Configuration_adv.h b/config/examples/WASP/PowerWASP/Configuration_adv.h index b5f4149214..7cf3ade764 100644 --- a/config/examples/WASP/PowerWASP/Configuration_adv.h +++ b/config/examples/WASP/PowerWASP/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h index 804836a53c..1c17ab612e 100644 --- a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h +++ b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h index 1d307572d2..840f3dd08c 100644 --- a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h +++ b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h index d869c31138..0fd77194be 100644 --- a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h +++ b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/FLSUN/kossel/Configuration_adv.h b/config/examples/delta/FLSUN/kossel/Configuration_adv.h index d869c31138..0fd77194be 100644 --- a/config/examples/delta/FLSUN/kossel/Configuration_adv.h +++ b/config/examples/delta/FLSUN/kossel/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h index 48d82cc876..38f211bb2c 100644 --- a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h +++ b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h index 48d82cc876..38f211bb2c 100644 --- a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h +++ b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/MKS/SBASE/Configuration_adv.h b/config/examples/delta/MKS/SBASE/Configuration_adv.h index 6677f2704f..bd21950bf8 100644 --- a/config/examples/delta/MKS/SBASE/Configuration_adv.h +++ b/config/examples/delta/MKS/SBASE/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/Tevo Little Monster/Configuration_adv.h b/config/examples/delta/Tevo Little Monster/Configuration_adv.h index fe52404a8a..3ba6ff5e7d 100644 --- a/config/examples/delta/Tevo Little Monster/Configuration_adv.h +++ b/config/examples/delta/Tevo Little Monster/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/generic/Configuration_adv.h b/config/examples/delta/generic/Configuration_adv.h index 48d82cc876..38f211bb2c 100644 --- a/config/examples/delta/generic/Configuration_adv.h +++ b/config/examples/delta/generic/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/kossel_mini/Configuration_adv.h b/config/examples/delta/kossel_mini/Configuration_adv.h index 507a6a143e..f472491aa0 100644 --- a/config/examples/delta/kossel_mini/Configuration_adv.h +++ b/config/examples/delta/kossel_mini/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/delta/kossel_xl/Configuration_adv.h b/config/examples/delta/kossel_xl/Configuration_adv.h index a45e2aac51..8cb908b829 100644 --- a/config/examples/delta/kossel_xl/Configuration_adv.h +++ b/config/examples/delta/kossel_xl/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/gCreate/gMax1.5+/Configuration_adv.h b/config/examples/gCreate/gMax1.5+/Configuration_adv.h index 873d9f0e47..b02731cf22 100644 --- a/config/examples/gCreate/gMax1.5+/Configuration_adv.h +++ b/config/examples/gCreate/gMax1.5+/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/makibox/Configuration_adv.h b/config/examples/makibox/Configuration_adv.h index 425dc60f70..547dc2b248 100644 --- a/config/examples/makibox/Configuration_adv.h +++ b/config/examples/makibox/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/tvrrug/Round2/Configuration_adv.h b/config/examples/tvrrug/Round2/Configuration_adv.h index 1ec915e6bf..6bc78a54a9 100644 --- a/config/examples/tvrrug/Round2/Configuration_adv.h +++ b/config/examples/tvrrug/Round2/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false diff --git a/config/examples/wt150/Configuration_adv.h b/config/examples/wt150/Configuration_adv.h index 46105b3fa9..def632cafd 100644 --- a/config/examples/wt150/Configuration_adv.h +++ b/config/examples/wt150/Configuration_adv.h @@ -108,7 +108,6 @@ #define CHAMBER_MINTEMP 5 #define CHAMBER_MAXTEMP 60 #define TEMP_CHAMBER_HYSTERESIS 1 // (°C) Temperature proximity considered "close enough" to the target - #define THERMAL_PROTECTION_CHAMBER // Enable thermal protection for the heated chamber //#define CHAMBER_LIMIT_SWITCHING //#define HEATER_CHAMBER_PIN 44 // Chamber heater on/off pin //#define HEATER_CHAMBER_INVERTING false