51单片机 I2C与中断共存问题

2019-07-15 14:56发布

本帖最后由 这里还有鱼9099 于 2016-2-25 22:20 编辑

把显示函数display()放在定时器中断T0里,把AD(PCF8591)读取放在主函数的while(1)循环里,就出了问题,我在AD函数里做了EA=0;EA=1;的避免干扰  还是不行 以下为代码:

#include <reg52.h>
#include <intrins.h>
#define uchar unsigned char
#define uint  unsigned int

uchar code table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xff,0xbf};
uchar discom[8];
uchar i;
uchar num0;

sbit sda=P2^1;
sbit scl=P2^0;

uchar ad;

void buzz()
{
                P2=(P2&0x1f)|0xa0;
                P0=0;
                P2&=0x1f;
}
/**************************************************************************************
****************************************************************************************/
void delay()
{_nop_();}

void i2cinit()
{
                scl=1;
                delay();
                sda=1;
                delay();
}
void start()
{
                EA=0;
                sda=1;
                delay();
                scl=1;
                delay();
                sda=0;
                delay();
                EA=1;
}
void respons()
{
                uchar i;
                EA=0;
                scl=1;
                delay();
                while((sda==1)&&(i<255))
                                i++;
                scl=0;
                delay();
                EA=1;
}
void stop()
{
                EA=0;
                sda=0;
                delay();
                scl=1;
                delay();
                sda=1;
                delay();
                EA=1;
}
void writebyte(uchar date)
{
                uchar i;
                EA=0;
                for(i=0;i<8;i++)
                {
                                scl=0;
                                delay();
                                sda=(date<<i)&0x80;
                                delay();
                                scl=1;
                                delay();
                }
                scl=0;
                delay();
                sda=1;
                delay();
                EA=1;
}
uchar readbyte()
{
                uchar i,temp;
                EA=0;
                scl=0;
                delay();
                for(i=0;i<8;i++)
                {
                                temp=temp<<1;
                                scl=1;   
                                 delay();
                                if(sda)temp|=0x01;
                                scl=0;
                                delay();
                }        
                EA=1;
                return temp;
}
/**************************************************************************************
****************************************************************************************/


uchar read_add(uchar control)
{
                uchar date;
                EA=0;
                start();
                writebyte(0x90);
                respons();
                writebyte(control);
                respons();
                start();
                writebyte(0x91);
                respons();
                date=readbyte();
                stop();
                EA=1;
                return date;
}

void display()
{
                P2=(P2&0x1f)|0xc0;
                P0=1<<i;
                P2&=0x1f;
                P2=(P2&0x1f)|0xe0;
                P0=table[discom];
                P2&=0x1f;
                if(i++==7)
                        i=0;
}
void timeinit()
{
                TMOD=0x01;
                TH0=(65536-1000)/256;
                TL0=(65536-1000)%256;
                EA=1;        
                ET0=1;
                TR0=1;
               
}
void main()
{
                buzz();
                i2cinit();
                timeinit();
                while(1)
                {
                                ad=read_add(0x43);   //0100 0011  ËÄͨµÀµ¥¶ËÊäÈë  Ñ¡ÔñͨµÀAIN3£º0011

                          discom[0]=ad/100;
                                discom[1]=ad%100/10;
                                discom[2]=ad%10;
                                discom[3]=10;
                                discom[4]=10;
                                discom[5]=10;
                                discom[6]=10;
                                discom[7]=10;
                        
                                
                }
}
void t0() interrupt 1
{
                TH0=(65536-1000)/256;
                TL0=(65536-1000)%256;
                num0++;
                if(num0==2)
                {
                                num0=0;
                                display();
                }
}


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
9条回答
这里还有鱼9099
1楼-- · 2019-07-16 08:39
零tot 发表于 2016-2-25 22:54
感觉写了太多的EA=0;EA=1;导致了测量时序不对了,可以试一下只在while读ad的位置上下加EA=0,EA=1;试试

今天拿别人的I2C程序试了一下就没有问题,可能我这个I2C还是时序有点问题,自己跑还行,加个中断就出问题了,我再研究研究。。。谢谢哈
零tot
2楼-- · 2019-07-16 14:03
 精彩回答 2  元偷偷看……
零tot
3楼-- · 2019-07-16 15:26
这里还有鱼9099 发表于 2016-2-26 14:53
今天拿别人的I2C程序试了一下就没有问题,可能我这个I2C还是时序有点问题,自己跑还行,加个中断就出问题了,我再研究研究。。。谢谢哈

互帮互助,不要客气

一周热门 更多>