|
@@ -4569,7 +4569,7 @@ inline void gcode_M109() {
|
4569
|
4569
|
#endif //TEMP_RESIDENCY_TIME > 0
|
4570
|
4570
|
|
4571
|
4571
|
float theTarget = -1.0, old_temp = 9999.0;
|
4572
|
|
- bool wants_to_cool;
|
|
4572
|
+ bool wants_to_cool = false;
|
4573
|
4573
|
cancel_heatup = false;
|
4574
|
4574
|
millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
|
4575
|
4575
|
|
|
@@ -4663,7 +4663,7 @@ inline void gcode_M109() {
|
4663
|
4663
|
#endif //TEMP_BED_RESIDENCY_TIME > 0
|
4664
|
4664
|
|
4665
|
4665
|
float theTarget = -1.0, old_temp = 9999.0;
|
4666
|
|
- bool wants_to_cool;
|
|
4666
|
+ bool wants_to_cool = false;
|
4667
|
4667
|
cancel_heatup = false;
|
4668
|
4668
|
millis_t now, next_temp_ms = 0, next_cool_check_ms = 0;
|
4669
|
4669
|
|