Index: firmware/App/Controllers/Thermistors.c =================================================================== diff -u -r34ae229d1508df89630f4dc5fbe9291d135f0686 -r7fe3d2932b501e323a6fb0eb47964b32da6798d9 --- firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 34ae229d1508df89630f4dc5fbe9291d135f0686) +++ firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 7fe3d2932b501e323a6fb0eb47964b32da6798d9) @@ -238,9 +238,11 @@ #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 {