ADC级联过采样模式中的测试程序为什么要这样写呢?
for (i=0; i<(BUF_SIZE/16); i++)
{
// Wait for int1
while (AdcRegs.ADCST.bit.INT_SEQ1== 0){}//等待本次序列结束
GpioDataRegs.GPASET.bit.GPIO0 = 1; // Set GPIO60 for monitoring -optional
#if POST_SHIFT
// For post shifting, shift the ADC results
// in the SampleTable buffer after the buffer is full.
for (i=0; i
{
SampleTable = ((SampleTable) >>4);
}