i use msp430g2452,
when i read the 24 mili volt, i get reading around 80 on lcd display.
i use 2.5v as reference.
since
0.024/2.5 * 1023 = 10.
so i should get around 10 instead.
below is my adc configuration.
ADC10CTL0 = SREF_1 + ADC10SHT_0 + MSC + REFON + REF2_5V + ADC10ON;
delayUs(50);
ADC10CTL1 = INCH_1 + SHS_0 + ADC10DIV_5 + ADC10SSEL_0 + CONSEQ_2;
ADC10AE0 = BIT1;
ADC10DTC1 = NSAMPLES;
i not sure whether i did something wrong in the configuration or not.