用28335设置为外部参考电压,可是不论怎么设置,读出的数都是设置为内部参考电压3V时的数。
//--- Select the ADC reference,(外部参考电压,带隙上电之前启用)
AdcRegs.ADCREFSEL.bit.REF_SEL = 1; // 0=internal, 1=external.
//--- Power-up the ADC
AdcRegs.ADCTRL3.all = 0x00E2; // Power-up reference and main ADC
请问这样在初始化ADC里设置有什么问题么 |