This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

ADS8509采用内部时钟模式时,读取时51单片机能否跟上其速度?

Other Parts Discussed in Thread: ADS8509

我用ADS8509测+5V的固定电压,发现每次结果都不一样,不知道是不是这个原因,12Mhz的51单片机跟不上ADS8509的时钟频率,导致有的位读取失败

RC=1;
            delay();
            RC=0;
            while(BUSY==0);
            for(i=0;i<16;i++)
            {
            while(!CLK);
            result<<=1;
            if(DATA==1)
            result+=1;
            while(CLK);    
            }