Index: firmware/App/Controllers/TemperatureSensors.h =================================================================== diff -u -rbbf67569fc5f34815c0e0855dd452de2be5a7976 -r34ed52c598042fdcfa5526e3b1d46fa09b040199 --- firmware/App/Controllers/TemperatureSensors.h (.../TemperatureSensors.h) (revision bbf67569fc5f34815c0e0855dd452de2be5a7976) +++ firmware/App/Controllers/TemperatureSensors.h (.../TemperatureSensors.h) (revision 34ed52c598042fdcfa5526e3b1d46fa09b040199) @@ -58,30 +58,30 @@ /// Temperature sensors data. typedef struct { - F32 inletPrimaryHeater; - F32 outletPrimaryHeater; - F32 conductivitySensor1; - F32 conductivitySensor2; - F32 outletRedundant; - F32 inletDialysate; - F32 primaryHeaterThermocouple; - F32 trimmerHeaterThermocouple; - F32 priamyHeaterColdjunction; - F32 trimmerHeaterColdjunction; - F32 primaryHeaterInternal; - F32 trimmerHeaterInternal; - F32 fpgaBoard; - F32 loadCellA1B1; - F32 loadCellA2B2; - F32 internalTHDORTD; - F32 internalTDIRTD; - F32 internalCondSnsrTemp; - U32 primaryThermoCoupleRaw; - U32 primaryColdjuncRaw; - U32 trimmerThermoCoupleRaw; - U32 trimmerColdjuncRaw; - S32 cond1Raw; - S32 cond2Raw; + F32 inletPrimaryHeater; ///< Inlet primary heater temperature sensor + F32 outletPrimaryHeater; ///< Outlet primary heater temperature sensor + F32 conductivitySensor1; ///< Conductivity sensor 1 temperature sensor + F32 conductivitySensor2; ///< Conductivity sensor 2 temperature sensor + F32 outletRedundant; ///< Outlet redundant temperature sensor + F32 inletDialysate; ///< Inlet dialysate temperature sensor + F32 primaryHeaterThermocouple; ///< Primary heaters thermocouple sensor + F32 trimmerHeaterThermocouple; ///< Trimmer heater thermocouple sensor + F32 priamyHeaterColdjunction; ///< Primary heaters cold junction temperature sensor + F32 trimmerHeaterColdjunction; ///< Trimmer heater cold junction temperature sensor + F32 primaryHeaterInternal; ///< Primary heaters internal temperature (calculated from thermocouple and cold junction) + F32 trimmerHeaterInternal; ///< Trimmer heater internal temperature (calculated from thermocouple and cold junction) + F32 fpgaBoard; ///< FPGA board temperature sensor + F32 loadCellA1B1; ///< Load cell A1/B1 temperature sensor + F32 loadCellA2B2; ///< Load cell A2/B2 temperature sensor + F32 internalTHDORTD; ///< THDo RTD channel temperature sensor + F32 internalTDIRTD; ///< TDI RTD channel temperature sensor + F32 internalCondSnsrTemp; ///< Conductivity Sensor internal temperature sensor + U32 primaryThermoCoupleRaw; ///< Primary heaters thermocouple raw ADC value + U32 primaryColdjuncRaw; ///< Primary heaters cold junction raw ADC value + U32 trimmerThermoCoupleRaw; ///< Trimmer heater thermocouple raw ADC value + U32 trimmerColdjuncRaw; ///< Trimmer heater cold junction raw ADC value + S32 cond1Raw; ///< Conductivity sensor 1 raw temperature ADC value + S32 cond2Raw; ///< Conductivity sensor 2 raw temperature ADC value } TEMPERATURE_SENSORS_DATA_T; // ********** public function prototypes **********