Index: firmware/App/Controllers/Thermistors.h =================================================================== diff -u -r62a4d7b976107f7ac4d5013ce06f38f4a0bf65bd -r1510aec1871295f04541f1b932211d4ac621cc48 --- firmware/App/Controllers/Thermistors.h (.../Thermistors.h) (revision 62a4d7b976107f7ac4d5013ce06f38f4a0bf65bd) +++ firmware/App/Controllers/Thermistors.h (.../Thermistors.h) (revision 1510aec1871295f04541f1b932211d4ac621cc48) @@ -8,6 +8,9 @@ /** * @defgroup Thermistors Thermistors * @brief Thermistors driver module. Reads and processes the thermistors. + * Onboard thermistor manufacturer: Murata Manufacturing, PN: NCP14XH103J03RC + * Power supply thermistors manufacturer: Murata Manufacturing, PN: NCP18XH103F03RB or + * Epcos Manufacturing, PN: B57330V2103F260 * * @addtogroup Thermistors * @{ @@ -20,12 +23,6 @@ typedef enum thermistors_Name { THERMISTOR_ONBOARD_NTC = 0, ///< Onboard thermistor - TEMPSENSOR_FPGA_SENSOR, ///< FPGA board temperature sensor - TEMPSENSOR_LOAD_CELL_A1_B1, ///< Load cell A1/B1 temperature sensor - TEMPSENSOR_LOAD_CELL_A2_B2, ///< Load cell A2/B2 temperature sensor - TEMPSENSOR_INTERNAL_THDO_RTD, ///< THDo RTD internal temperature sensor - TEMPSENSOR_INTERNAL_TDI_RTD, ///< TDi RTD internal temperature sensor - TEMPSENSOR_INTERNAL_CONDUCTIVITY, ///< Conductivity sensor temperature sensor THERMISTOR_POWER_SUPPLY_1, ///< DG power supply 1 thermistor THERMISTOR_POWER_SUPPLY_2, ///< DG power supply 2 thermistor NUM_OF_THERMISTORS, ///< Number of thermistors @@ -35,12 +32,6 @@ typedef struct { F32 onboardThermistor; ///< Onboard thermistor data - F32 fpgaBoardTempSensor; ///< FPGA board temperature sensor data - F32 loadCellA1TempSensor; ///< Load cell A1 temperature sensor - F32 loadCellA2TempSensor; ///< Load cell A2 temperature sensor - F32 rtdInternalTempSensor; ///< RTD internal temperature sensor - F32 rtdTDiInternalTempSensor; ///< RTD TDi internal temperature sensor - F32 conductivityTempSensor; ///< Conductivity temperature sensor F32 powerSupply1Thermistor; ///< Power supply 1 thermistor F32 powerSupply2Thermistor; ///< Power supply 2 thermistor } THERMISTORS_DATA_T;