Fixing a problem with heated beds not working without PID and BED_LIMIT_SWITCHING

This commit is contained in:
daid303 2012-12-13 10:25:29 +01:00
parent 047d037f8c
commit 08356361ac

View File

@ -432,9 +432,9 @@ void manage_heater()
soft_pwm_bed = 0; soft_pwm_bed = 0;
} }
#elif not defined BED_LIMIT_SWITCHING #elif !defined(BED_LIMIT_SWITCHING)
// Check if temperature is within the correct range // Check if temperature is within the correct range
if((current_temperature_bed > BED_MAXTEMP) && (current_temperature_bed < BED_MINTEMP)) if((current_temperature_bed > BED_MINTEMP) && (current_temperature_bed < BED_MAXTEMP))
{ {
if(current_temperature_bed >= target_temperature_bed) if(current_temperature_bed >= target_temperature_bed)
{ {