Index: firmware/App/Monitors/Temperature.h =================================================================== diff -u -r41c4d109b7bc172d93ae1f4e4b20acaf96547807 -r337136fc77fe5628fa727aac6252a06238561a10 --- firmware/App/Monitors/Temperature.h (.../Temperature.h) (revision 41c4d109b7bc172d93ae1f4e4b20acaf96547807) +++ firmware/App/Monitors/Temperature.h (.../Temperature.h) (revision 337136fc77fe5628fa727aac6252a06238561a10) @@ -24,38 +24,19 @@ /** * @defgroup Temperature Temperature * @brief Temperature Monitor unit. monitors the temperature sensors - * for the RO sub-system. + * for the FP sub-system. * * @addtogroup Temperature * @{ */ // ********** public definitions ********** -/// Temperature sensors data structure. -typedef struct -{ - F32 p10Temp; ///< P10 temperature from inlet conductivity sensor. - F32 p19Temp; ///< P19 temperature from outlet conductivity sensor. - F32 m1Temp; ///< Temperature before pressure regulator (M1) - F32 m3Temp; ///< Temperature after pressure regulator (M3) - F32 p8Temp; ///< Temperature before inlet conductivity sensor (P8) - F32 p13Temp; ///< Temperature before RO filter (P13) - F32 p17Temp; ///< Temperature after RO filter (P17) - F32 x1Temp; ///< Temperature before RO pump (X1) - F32 x2Temp; ///< Temperature RO Concentrate - F32 x3Temp; ///< Temperature RO Concentrate drop - F32 x4Temp; ///< Temperature drain drop -} TEMPERATURE_SENSORS_DATA_T; - // ********** public function prototypes ********** void initTemperature( void ); void execTemperatureSensors( void ); -//SELF_TEST_STATUS_T execTemperatureSensorsSelfTest( void ); -BOOL testTemperatureSensorsDataPublishIntervalOverride( MESSAGE_T *message ); - /**@}*/ #endif