Index: firmware/App/Controllers/Thermistors.c =================================================================== diff -u -r34ae229d1508df89630f4dc5fbe9291d135f0686 -r4b37115aead2565979d889518c492389757a6346 --- firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 34ae229d1508df89630f4dc5fbe9291d135f0686) +++ firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 4b37115aead2565979d889518c492389757a6346) @@ -238,18 +238,20 @@ #ifndef _RELEASE_ if ( HW_CONFIG_BETA == getHardwareConfigStatus() ) { + // In Beta thermistor power supply 2 is printed as thermistor power supply 1. The corresponding ADC channel has been + // reassigned to non-isolated power supply voltage in DVT. So its enums has been renamed. thermistorsStatus[ THERMISTOR_ONBOARD_NTC ].rawADCRead = getIntADCReading( INT_ADC_BOARD_THERMISTOR ); thermistorsStatus[ THERMISTOR_POWER_SUPPLY_1 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_1_THERMISTOR ); - thermistorsStatus[ THERMISTOR_POWER_SUPPLY_2 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_2_THERMISTOR ); + thermistorsStatus[ THERMISTOR_POWER_SUPPLY_2 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_1_THERMISTOR ); } else +#endif { thermistorsStatus[ THERMISTOR_ONBOARD_NTC ].rawADCRead = getFPGAOnBoardThermistorCount(); thermistorsStatus[ THERMISTOR_POWER_SUPPLY_1 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_1_THERMISTOR ); thermistorsStatus[ THERMISTOR_POWER_SUPPLY_2 ].rawADCRead = getFPGAPowerSupply2ThermistorCount(); } -#endif // Get all the raw readings in ADC // Zero the counter for the next round of reading