0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-02-17 14:50:58 +00:00

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;
}
#elif not defined BED_LIMIT_SWITCHING
#elif !defined(BED_LIMIT_SWITCHING)
// 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)
{