P6SEL |= BIT0 + BIT1;
ADC12CTL0 = ADC12ON+ADC12MSC+ADC12SHT0_8+ADC12REF2_5V+ADC12REFON; // Turn on ADC12, extend sampling time
// to avoid overflow of results + V ref = 2.5V
ADC12CTL1 = ADC12SHP+ADC12CONSEQ_3; // Use sampling timer, repeated sequence
ADC12MCTL0 = ADC12INCH_0; // ref+=AVcc = 2.5V, channel = A0
ADC12MCTL1 = ADC12INCH_1 + ADC12EOS;
ADC12IE = ADC12IE1;
I config adc12 for sequence multi channel
but it seem to be not right
I have 2.5 V in my channel but the result in adc < 0x800
Can any body help me
Thank you