guoll
驱动牛犊
驱动牛犊
  • 注册日期2004-08-04
  • 最后登录2009-10-29
  • 粉丝0
  • 关注0
  • 积分19分
  • 威望5点
  • 贡献值0点
  • 好评度3点
  • 原创分0分
  • 专家分0分
阅读:4219回复:4

我的51单片机模拟IIC总线访问24c04的程序,楼下高手看看哪里不行啊?!!

楼主#
更多 发布于:2005-08-04 09:54
  /*----------------------------------------------------------------
            Acess the eeprom--24c04
----------------------------------------------------------------*/
#include <intrins.h>

#ifndef INT8U
#define INT8U unsigned char
#endif

#ifndef INT8S
#define INT8S signed char
#endif

#ifndef INT16U
#define INT16U unsigned int
#endif

#define I2C_DELAY;   _nop_();_nop_();_nop_();_nop_();_nop_();  // >=4.7uS

//----------------------------------------------------------------
//      delay 100us
//----------------------------------------------------------------
void mDelay(INT8U k)
{
       INT16U i ;
      
       for(; k>0; k--)
       {
              for(i=0; i<93; i++)                  
                     ;
       }
}



//----------------------------------------------------------------
//OK
//----------------------------------------------------------------
void I2C_Start(void)
{
       SDA = 1;
       I2C_DELAY;
      
       SCL = 1;
       I2C_DELAY;
      
       SDA = 0;
       I2C_DELAY;
       I2C_DELAY;
}



//----------------------------------------------------------------
//OK
//----------------------------------------------------------------
void I2C_Stop(void)
{
       SDA = 0 ;
       I2C_DELAY;
      
       SCL = 1 ;
       I2C_DELAY;
      
       SDA = 1 ;
       I2C_DELAY;
       I2C_DELAY;
}



//----------------------------------------------------------------
//
//----------------------------------------------------------------
void sendAck(void)
{  
       SCL = 0;
       I2C_DELAY;
      
       SDA = 0;
       I2C_DELAY;
      
       SCL = 1;
       I2C_DELAY;
              
}


//----------------------------------------------------------------
//
//----------------------------------------------------------------
void sendNoAck(void)
{
    SCL = 0;
       I2C_DELAY;
      
       SDA = 1;
       I2C_DELAY;
      
       SCL = 1;
       I2C_DELAY;
              
}


//----------------------------------------------------------------
//  0 = noACK; 1 = ACK ;
//----------------------------------------------------------------
bit checkAck()
{
    bit tempbit;
    /*发送完一个字节后检验设备的应答信号*/
    SDA = 1;  
    I2C_DELAY;
      
    SCL = 0;
    I2C_DELAY;
    
    tempbit = SDA;  
    
    SCL = 1;
    I2C_DELAY;
    
    if(tempbit==1)
    {
        return 0;     //noACK
    }
    else
    {
        return 1;     //ACK
    }
}
    
    
    
//----------------------------------------------------------------
//OK
//  a positive clock edge clock a bit into the ROM
//----------------------------------------------------------------
void writeByte(INT8U datum)
{
       INT8U bitCnt = 0 ;

       for(bitCnt=0; bitCnt<8; bitCnt++)
       {              
              SCL = 0 ;
              I2C_DELAY;
              
              if ((datum&0x80) == 0x80)       //if the MSb is 1
                     SDA = 1 ;
              else
                     SDA = 0 ;      
              I2C_DELAY;
                            
              SCL = 1 ;
              I2C_DELAY;
              
              datum<<=1 ;
       }

}



//----------------------------------------------------------------
//OK
//----------------------------------------------------------------
INT8U readByte(void)
{
    bit   tempbit = 1 ;
       INT8U temp = 0 ;
       INT8U bitCnt ;
      
       SDA = 1 ;   // release the bus,ready to receive byte??????????????
       I2C_DELAY;
        
       for(bitCnt=0; bitCnt<8; bitCnt++)
       {              
              SCL = 0;     //?????????????????????????huan???????????????
              I2C_DELAY;      
              
              tempbit = SDA ;                                  
              if (tempbit)
                     temp |= 0x01 ;
              else
                     temp &= 0xfe ;
                    
              SCL = 1 ;
              I2C_DELAY;                            
              
               if(bitCnt<7)
                  temp <<= 1 ;
        
    }

       return(temp) ;
}



/*~~~~~~~~~~~~~~~~~~~~~~~ API ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*-----------------------------------------------------------------
    write some bytes to sequential address
-----------------------------------------------------------------*/
void writeToROM(INT8U datum[], INT8U address, INT8U num)
{
    bit    tempbit ;
       INT8U  i ;
       INT8U  *datum_P ;
       datum_P = datum ;
    
    I2C_Start() ;
    
       writeByte(0xa0) ;
       tempbit = checkAck();
      
       writeByte(address) ;
       tempbit = checkAck();
      
       for(i=0; i<num; i++)
       {
              writeByte(*(datum_P+i)) ;
              
              
              if(!checkAck())
              {
                  I2C_Stop() ;  
                  mDelay(100) ;                  
              }      
       }
      
       I2C_Stop() ;          
}



/*-----------------------------------------------------------------
    read some bytes from ROM`s sequential address
-----------------------------------------------------------------*/
void readFromROM(INT8U datum[], INT8U address, INT8U num)
{
    bit tempbit ;
       INT8U i ;
       INT8U *datum_P ;
      
       datum_P = datum;

    I2C_Start() ;
    
       writeByte(0xa0) ;
       tempbit = checkAck();
      
       writeByte(address) ;
       tempbit = checkAck();
      
       I2C_Start() ;
       writeByte(0xa1) ;
       tempbit = checkAck();
              
       for(i=0; i<num; i++)
       {      
              *(datum_P+i) = readByte() ;
      
              if(i!=num-1)
              {
                  sendAck() ;    
              }
              else
              {
                  sendNoAck() ;
              }      
       }
      
       I2C_Stop() ;
}



/*-----------------------------------------------------------------
    wirte one byte to ROM --random write
-----------------------------------------------------------------*/
void writeOneByte(INT8U addr, INT8U datum)
{
    bit tempbit ;
       /*write a byte to mem*/
      
    I2C_Start();
    
    writeByte(0xa0);
    tempbit = checkAck();
    
    writeByte(addr);   /*address*/
    tempbit = checkAck();
      
       writeByte(datum);  /*the data*/
      
       tempbit = checkAck();
      
       I2C_Stop();        
       mDelay(100) ;
      
}



/*-----------------------------------------------------------------
    read one byte from rom --random read
-----------------------------------------------------------------*/
INT8U readOneByte(INT8U addr)
{
       bit  tempbit = 1;
    INT8U mydata;
    /*read a byte from mem*/
    
    I2C_Start();
    
    writeByte(0xa0);
    tempbit = checkAck();
    
    writeByte(addr);    /*address*/
    tempbit = checkAck();
    
    I2C_Start();
    
    writeByte(0xa1);
    tempbit = checkAck();

    mydata = readByte();
    tempbit = checkAck();

    return (mydata) ;
    
    I2C_Stop();
}
--郭师傅--
游客

返回顶部