Index: firmware/App/Controllers/Heaters.c =================================================================== diff -u -re398b4bd8bfacd05a021d6008dbccf3c38f2c5d1 -rfa75c4efb5820c4030cf621fda6f58279ad292ba --- firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision e398b4bd8bfacd05a021d6008dbccf3c38f2c5d1) +++ firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision fa75c4efb5820c4030cf621fda6f58279ad292ba) @@ -31,7 +31,6 @@ #include "OperationModes.h" #include "PersistentAlarm.h" #include "Reservoirs.h" -#include "ROPump.h" #include "SafetyShutdown.h" #include "SystemCommMessages.h" #include "TaskGeneral.h" @@ -177,6 +176,7 @@ if( heater < NUM_OF_DG_HEATERS ) { +#ifndef DISABLE_HEATERS_AND_TEMPS // Assume the target temperature has not changed heatersStatus[ heater ].hasTargetTempChanged = FALSE; @@ -187,6 +187,7 @@ heatersStatus[ heater ].hasTargetTempChanged = TRUE; result = TRUE; } +#endif } else { @@ -220,6 +221,7 @@ { BOOL status = FALSE; + if( heater < NUM_OF_DG_HEATERS ) { if ( HEATER_EXEC_STATE_OFF == heatersStatus[ heater ].state )