Index: firmware/App/Monitors/WaterQualityMonitor.c =================================================================== diff -u -ra4f89c8a38b6c77baaa141b38045b511b1887a21 -rf470abe73ad49acbdf4b6d821270374a9d528286 --- firmware/App/Monitors/WaterQualityMonitor.c (.../WaterQualityMonitor.c) (revision a4f89c8a38b6c77baaa141b38045b511b1887a21) +++ firmware/App/Monitors/WaterQualityMonitor.c (.../WaterQualityMonitor.c) (revision f470abe73ad49acbdf4b6d821270374a9d528286) @@ -311,12 +311,12 @@ * @brief * The checkInletTemperatures function checks the inlet water temperature * against the temperature threshold and alarm if the temperature is out of range. - * @details \b Inputs: temperatureP10 for featured or temperatureM3 for de-featured + * @details \b Inputs: temperatureP10 for featured or temperatureD1 for de-featured * @details \b Outputs: none * @details \b Alarms: ALARM_ID_FP_INLET_TEMPERATURE_OUT_LOW_RANGE when - * P10 or M3 temperature goes beyond low temperature limit. + * P10 or D1 temperature goes beyond low temperature limit. * @details \b Alarms: ALARM_ID_FP_INLET_TEMPERATURE_OUT_HIGH_RANGE when - * P10 or M3 temperature goes beyond high temperature limit + * P10 or S1 temperature goes beyond high temperature limit * @return none *************************************************************************/ void checkInletTemperatures( void ) @@ -337,7 +337,7 @@ } else { - temperatureD1 =getTemperatureValue( D1_TEMP ); + temperatureD1 = getTemperatureValue( D1_TEMP ); isTempOutOfLowRange = ( ( temperatureD1 < INLET_TEMPERATURE_LOW_THRESHOLD_C ) ? TRUE : FALSE ); isTempOutOfHighRange = ( ( temperatureD1 > INLET_TEMPERATURE_HIGH_THRESHOLD_C ) ? TRUE : FALSE ); @@ -456,7 +456,6 @@ // Serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer result = serializeMessage( msg, COMM_BUFFER_OUT_DD_CAN_PC, ACK_NOT_REQUIRED ); - // result = sendMessage( MSG_ID_DD_SEND_BLOOD_LEAK_EMB_MODE_RESPONSE, COMM_BUFFER_OUT_DD_CAN_PC, (U08*)&response, sizeof( BLOOD_LEAK_EMB_MODE_RESP_T ) ); return result; }