Index: firmware/App/Controllers/Thermistors.c =================================================================== diff -u -rfd3086eca05ca4258e2e6aa06f41bcf8354a5ee3 -r760ad8f1018cdba6f60397c698659a70774c5191 --- firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision fd3086eca05ca4258e2e6aa06f41bcf8354a5ee3) +++ firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 760ad8f1018cdba6f60397c698659a70774c5191) @@ -279,7 +279,8 @@ temperature = getThermistorTemperatureValue( thermistor ); // Check if thermistor is out of range - if ( ( temperature < MIN_ALLOWED_TEMPERATURE ) || ( temperature > MAX_ALLOWED_TEMPERATURE ) ) + if ( ( ( temperature < MIN_ALLOWED_TEMPERATURE ) || ( temperature > MAX_ALLOWED_TEMPERATURE ) ) && + ( getCurrentOperationMode() != DG_MODE_INIT ) ) { isTempOutOfRange = TRUE; alarmID = thermistor;