送你一个模拟的i2c主机程序
代码:
#include <msp430x44x.h>
#define SET_SCL D4DIR &= ~BIT6
#define SET_SDA D4DIR &= ~BIT7
#define CLR_SCL P4DIR |= BIT6
#define CLR_SDA P4DIR |= BIT7
unsigned char ACK_flag;
//*******************************************
void init_I2C(void)
{
P4OUT = 0;
P4DIR = 0; //全部为输入状态,即位高电平
}
//*******************************************
void START(void)//SCL为高的时候,SDA一个下降沿
{
SET_SDA;
SET_SCL;
Delay(5);
CLR_SDA;
Delay(5);
CLR_SCL;
}
//********************************************
void STOP(void)//SCL为高的时候,SDA一个上升沿
{
CLR_SCL;
CLR_SDA;
SET_SCL;
Delay(5);
SET_SDA;
Delay(5);
CLR_SCL;
}
/*************************************************
函数(模块)名称:
功能: 应答信号
输入参数: 无
输出参数: 无
函数返回值说明:无
使用的资源:
它说明: 从机发ACK告诉主机一个字节的读/写操作完成
*************************************************/
void ACK(void)//SCL为高的时候,SDA为低
{
CLR_SDA;
SET_SCL;
Delay(5);
CLR_SCL;
Delay(5);
SET_SDA;
}
/*************************************************
函数(模块)名称:
功能: 非应答信号
输入参数: 无
输出参数: 无
函数返回值说明:无
使用的资源:
它说明: 主机发NO_ACK告诉从机读操作完成
*************************************************/
void NO_ACK(void)//SCL为高的时候,SDA也为高
{
SET_SDA;
SET_SCL;
Delay(5);
CLR_SCL;
Delay(5);
CLR_SDA;
}
/*************************************************
函数(模块)名称:
功能: 等待应答信号
输入参数: 无
输出参数: 无
函数返回值说明:无
使用的资源:
它说明: 从机有应答则ACK_flag=0,否则为1
*************************************************/
void Wait_ACK(void)//主机释放总线,等待回应信号
{
SET_SDA;
SET_SCL;
ACK_flag=0;
Delay(5);
if(P4IN & BIT7)
{
ACK_flag=1; //无回应信号,ACK_flag=1
}
Delay(5);
CLR_SCL;
}
/*************************************************
函数(模块)名称:
功能: 完成一个字节的写操作
输入参数: 要写的数据
输出参数: 无
函数返回值说明:
使用的资源
它说明:
*************************************************/
void Write8bit(unsigned char date)
{
char bits=8;
while(bits-- != 0)
{
if(date & 0x80)
SET_SDA;
else
CLR_SDA;
SET_SCL;
Delay(10);
date <<= 1;
CLR_SCL;
}
}
/*************************************************
函数(模块)名称:
功能: 完成一个字节的读操作
输入参数: 无
输出参数: 所读数据
函数返回值说明:
使用的资源
其它说明:
*************************************************/
unsigned char Read8bit(void)
{
char bits=8;
unsigned char temp=0;
while(bits-- != 0)
{
SET_SDA;
SET_SCL; //接收方,在SCL为高的时候读SDA
temp<<=1;
Delay(5);
if(P4IN & BIT7)
temp=temp|0x01;
Delay(5);
CLR_SCL;
}
return(temp);
}
/*************************************************
函数(模块)名称:
功能: 完成24LC01的字节写
输入参数: 被写数据地址,数据写入地址,写数据的字节数
输出参数: 0或者1
函数返回值说明: 页写成功返回0,否则返回1
使用的资源
其它说明:
*************************************************/
unsigned char ByteWrite24LC01(unsigned char *p_date,unsigned char adr,
unsigned char nbyte)
{
while(nbyte-- != 0)
{
START();
Write8bit(W_DEVICE_ADR); //发送设备地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
Write8bit(adr); //24LC01中被写的首地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
Write8bit(*p_date); //发送数据
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
p_date++;
adr++;
STOP();
}
return 0;
}
/*************************************************
函数(模块)名称:
功能: 完成24LC01的页写
输入参数: 被写数据地址,数据写入地址,写数据的字节数
输出参数: 0或者1
函数返回值说明: 页写成功返回0,否则返回1
使用的资源
其它说明:一页是8个字节,页写时注意页地址,否则出错
*************************************************/
unsigned char PageWrite24LC01(unsigned char *p_date,unsigned char adr,
unsigned char nbyte)
{
unsigned int x,y;
unsigned char z;
START();
x=8-adr%8;
y=adr+x;
z=nbyte-x;
Write8bit(W_DEVICE_ADR); //发送设备地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
Write8bit(adr); //24LC01中被写的首地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
while(x-- != 0)
{
Write8bit(*p_date); //发送数据
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
p_date++;
}
STOP();
Delay5Ms_OPEN();
LPM3;
START();
Write8bit(W_DEVICE_ADR); //发送设备地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
Write8bit(y); //24LC01中被写的首地址
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
while(z-- != 0)
{
Write8bit(*p_date); //发送数据
Wait_ACK();
if( ACK_flag==1 ) //无应答(写一个字节要等待从设备返回一个应答)
return 1;
p_date++;
}
STOP();
Delay5Ms_OPEN();
LPM3;
return 0;
}
/*************************************************
函数(模块)名称:
功能: 完成24LC01的随机读
输入参数: 读出数据存入地址,被读数据地址
输出参数: 0或者1
函数返回值说明: 随机读成功返回0,否则返回1
使用的资源
其它说明:
*************************************************/
unsigned char RandomRead(unsigned char *p_date,unsigned char adr)
{
START();
Write8bit(W_DEVICE_ADR);
Wait_ACK();
if( ACK_flag==1 )
return 1;
Write8bit(adr);
Wait_ACK();
if( ACK_flag==1 )
return 1;
START();
Write8bit(R_DEVICE_ADR);
Wait_ACK();
if( ACK_flag==1 )
return 1;
*p_date=Read8bit(); //读数据
NO_ACK(); //发送无应答信号
STOP();
return 0;
}
/*************************************************
函数(模块)名称:
功能: 完成24LC01的连续读
输入参数: 读出数据存入地址,被读数据地址,读数据的字节数
输出参数: 0或者1
函数返回值说明: 连续读成功返回0,否则返回1
使用的资源
其它说明:
*************************************************/
unsigned char Read24LC01(unsigned char *p_date,unsigned char adr,
unsigned char nbyte)
{
START();
Write8bit(W_DEVICE_ADR);
Wait_ACK();
if( ACK_flag==1 )
return 1;
Write8bit(adr);
Wait_ACK();
if( ACK_flag==1 )
return 1;
START();
Write8bit(R_DEVICE_ADR);
Wait_ACK();
if( ACK_flag==1 )
return 1;
while(nbyte-- != 1) //读(nbyte-1)个字节
{
*p_date=Read8bit(); //读数据
ACK(); //读完一个字节发送一个应答信号
p_date++;
}
*p_date=Read8bit(); //读最后一个数据字节
NO_ACK(); //发送无应答信号
STOP();
return 0;
}
//*********************************************
void Delay(unsigned int m)
{
while(m-- != 0);
}
|