Index: firmware/App/Monitors/Temperature.h =================================================================== diff -u -ra1907314deab28c20945cd41d2d167924daf2c08 -r7b9a8c0cb9986368e1e38fcdb9daaf3cf707dfd2 --- firmware/App/Monitors/Temperature.h (.../Temperature.h) (revision a1907314deab28c20945cd41d2d167924daf2c08) +++ firmware/App/Monitors/Temperature.h (.../Temperature.h) (revision 7b9a8c0cb9986368e1e38fcdb9daaf3cf707dfd2) @@ -35,9 +35,13 @@ /// Temperature sensors data structure. typedef struct { - F32 tempTRO1; ///< TRO1 temperature sensor (P22) - F32 tempTRO2; ///< TRO2 temperature sensor (P21) - F32 boardTemp; ///< Board temperature sensor + F32 tempP23; ///< P23 temperature sensor. + F32 tempP22; ///< P22 temperature sensor. + F32 tempP10; ///< P10 temperature from inlet conductivity sensor. + F32 tempP19; ///< P19 temperature from outlet conductivity sensor. + F32 tempP7; ///< P7 temperature from inlet flow sensor. + F32 tempP16; ///< P16 temperature from outlet flow sensor. + F32 tempBoard; ///< Board temperature sensor } TEMPERATURE_SENSORS_DATA_T; // ********** public function prototypes **********