Browse Source

Remove extra #if (#14439)

pull/1/head
Giuliano Zaro 5 years ago
committed by Scott Lahteine
parent
commit
a9445d557e
  1. 8
      Marlin/src/module/temperature.cpp

8
Marlin/src/module/temperature.cpp

@ -1967,17 +1967,13 @@ void Temperature::disable_all_heaters() {
#if HAS_HEATED_BED #if HAS_HEATED_BED
temp_bed.target = 0; temp_bed.target = 0;
temp_bed.soft_pwm_amount = 0; temp_bed.soft_pwm_amount = 0;
#if HAS_HEATED_BED WRITE_HEATER_BED(LOW);
WRITE_HEATER_BED(LOW);
#endif
#endif #endif
#if HAS_HEATED_CHAMBER #if HAS_HEATED_CHAMBER
temp_chamber.target = 0; temp_chamber.target = 0;
temp_chamber.soft_pwm_amount = 0; temp_chamber.soft_pwm_amount = 0;
#if HAS_HEATED_CHAMBER WRITE_HEATER_CHAMBER(LOW);
WRITE_HEATER_CHAMBER(LOW);
#endif
#endif #endif
} }

Loading…
Cancel
Save