Hi everyone, I am using TMS570ls0432 Hercules Development Board and I want to convert the value from the adc memory of the temperature sensor of the board. Based on my experience on Msp430 boards, I know that we use voltage reference to determine the real temperature value. For example:
For msp430f4618, we have
// oC = ((x/4096)*1500mV)-986mV)*1/3.55mV = x*423/4096 - 278
IntDegC = (ADC12MEM0 - 2692)* 423/4096
Where 1500mV is voltage reference.
Is it the same with TMS570ls0432 Hercules Development Board? What is the temperature formula for my case?. Thanks in advance