|
< >[转载]</P>
< > /*文件: PCF8563T.C 2001-11-27, 18:39:20*/
/**————————————————————
〖说明〗I2C总线驱动程序(用两个普通IO模拟I2C总线)
包括100Khz(T=10us)的标准模式(慢速模式)选择,
和400Khz(T=2.5us)的快速模式选择,
默认11.0592Mhz的晶振。
〖文件〗PCF8563T.C ﹫2001/11/2 7
〖作者〗龙啸九天 c51@yeah.net http://www.c51bbs.co /
〖修改〗修改建议请到论坛公布 http://www.c51bbs.co m
〖版本〗V1.00A Build 0803
—————————————————————*/
#ifndef SDA
#define SDA P0_0
#define SCL P0_1
#endif</P>
< > extern uchar SystemError;</P>
<P> #define uchar unsigned char
#define uint unsigned int
#define Byte unsigned char
#define Word unsigned int
#define bool bit
#define true 1
#define false 0</P>
<P> #define SomeNOP(); _nop_();_nop_();_nop_();_nop_();</P>
<P> /**--------------------------------------------------------------------------------
调用方式:void I2CStart(void) ﹫2001/07/0 4
函数说明:私有函数,I2C专用
---------------------------------------------------------------------------------*/
void I2CStart(void)
{
EA=0;
SDA=1; SCL=1; SomeNOP();//INI
SDA=0; SomeNOP(); //START
SCL=0;
}</P>
<P> /**--------------------------------------------------------------------------------
调用方式:void I2CStop(void) ﹫2001/07/0 4
函数说明:私有函数,I2C专用
---------------------------------------------------------------------------------*/
void I2CStop(void)
{
SCL=0; SDA=0; SomeNOP(); //INI
SCL=1; SomeNOP(); SDA=1; //STOP
EA=1;
}
/**--------------------------------------------------------------------------------
调用方式:bit I2CAck(void) ﹫2001/07/0 4
函数说明:私有函数,I2C专用,等待从器件接收方的应答
---------------------------------------------------------------------------------*/
bool WaitAck(void)
{
uchar errtime=255;//因故障接收方无ACK,超时值为255。
SDA=1;SomeNOP();
SCL=1;SomeNOP();
while(SDA) {errtime--; if (!errtime) {I2CStop();SystemError=0x11;return false;}}
SCL=0;
return true;
}
/**--------------------------------------------------------------------------------
调用方式:void SendAck(void) ﹫2001/07/0 4
函数说明:私有函数,I2C专用,主器件为接收方,从器件为发送方时,应答信号。
---------------------------------------------------------------------------------*/
void SendAck(void)
{
SDA=0; SomeNOP();
SCL=1; SomeNOP();
SCL=0;
}
/**--------------------------------------------------------------------------------
调用方式:void SendAck(void) ﹫2001/07/0 4
函数说明:私有函数,I2C专用,主器件为接收方,从器件为发送方时,非应答信号。
}**--------------------------------------------------------------------------------
void SendNotAck(void)
{
SDA=1; SomeNOP();
SCL=1; SomeNOP();
SCL=0;
}
/**--------------------------------------------------------------------------------
调用方式:void I2CSend(uchar ch) ﹫2001/07/0 5
函数说明:私有函数,I2C专用
---------------------------------------------------------------------------------*/
void I2CSendByte(Byte ch)
{
uchar i=8;
while (i--)
{
SCL=0;_nop_();
SDA=(bit)(ch&0x80); ch<<=1; SomeNOP();
SCL=1; SomeNOP();
}
SCL=0;
}
/**--------------------------------------------------------------------------------
调用方式:uchar I2CReceive(void) ﹫2001/07/0 5
函数说明:私有函数,I2C专用
---------------------------------------------------------------------------------*/
Byte I2CReceiveByte(void)
{
uchar i=8;
Byte ddata=0;
SDA=1;
while (i--)
{
ddata<<=1;
SCL=0;SomeNOP();
SCL=1;SomeNOP();
ddata|=SDA;
}
SCL=0;
return ddata;
}
//---------------------------------------------------------------------------
//开始PCF8563T驱动程序
文件: PCF8563T.C 2001-11-27, 18:39:20
/**--------------------------------------------------------------------------------
调用方式:void GetPCF8563(uchar firsttype,uchar count,uchar *buff) ﹫2001/08/0 7
函数说明:读取时钟芯片PCF8563的时间,设置要读的第一个时间类型firsttype,并设置读取
的字节数,则会一次把时间读取到buff中。顺序是:
0x02:秒/0x03:分/0x04:小时/0x05:日/0x06:星期/0x07:月(世纪)/0x08:年
---------------------------------------------------------------------------------*/
void GetPCF8563(uchar firsttype,uchar count,uchar *buff)
{
uchar i;
I2CStart();
I2CSendByte(0xA2);
WaitAck();
I2CSendByte(firsttype);
WaitAck();</P>
<P> I2CStart();
I2CSendByte(0xA3);
WaitAck();</P>
<P> for (i=0;i<count;i++)
{
buff<i>=I2CReceiveByte();
if (i!=count-1) SendAck();//除最后一个字节外,其他都要从MASTER发应答。
}</P>
<P> SendNotAck();
I2CStop();
}</P>
<P>
/**--------------------------------------------------------------------------------
调用方式:void SetPCF8563(uchar timetype,uchar value) ﹫2001/08/0 7
函数说明:调整时钟。timetype是要改的时间类型,value是新设置的时间值(BCD格式)。
0x02:秒/0x03:分/0x04:小时/0x05:日/0x06:星期/0x07:月(世纪)/0x08:年
---------------------------------------------------------------------------------*/
void SetPCF8563(uchar timetype,uchar value)
{
I2CStart();
I2CSendByte(0xA2);
WaitAck();
I2CSendByte(timetype);
WaitAck();
I2CSendByte(value);
WaitAck();
I2CStop();
}
/**--------------------------------------------------------------------------------
调用方式:void SetAlarmHour(uchar count) ﹫2001/08/0 7
函数说明:设置报警闹钟在一天的第count点报警。例如:count=23,则在晚上11点报警。
---------------------------------------------------------------------------------*/
void SetAlarm(uchar alarmtype,uchar count)
{
SetPCF8563(0x01,0x02);
SetPCF8563(alarmtype,count);
}
/**--------------------------------------------------------------------------------
调用方式:void CleanAlarm(void) ﹫2001/08/0 7
函数说明:清除所有报警设置。
---------------------------------------------------------------------------------*/
void CleanAlarm(void)
{
SetPCF8563(0x01,0x00);
SetPCF8563(0x09,0x80);
SetPCF8563(0x0A,0x80);
SetPCF8563(0x0B,0x80);
SetPCF8563(0x0C,0x80);
// SetPCF8563(0x0D,0x00);
// SetPCF8563(0x0E,0x03);
}
/*--------------------------------------------------------------------------------
调用方式:uchar read1380(uchar command )
函数说明:read1380()返回当前时间, command指要返回的时间类型。
秒:81H 分钟:83H 小时:85H 日期:87H 星期:89H 星期几:8BH 年:8D H
---------------------------------------------------------------------------------*/
uchar read1380 (uchar command)
{
uchar time;
GetPCF8563(command,1,&time);
return time;
}</P>
<P> /*--------------------------------------------------------------------------------
调用方式:void write1380(uchar command ,uchar time )
函数说明:write1380()往HT1380写命令和数据,command是命令字, time是后写入的数据
---------------------------------------------------------------------------------*/
void write1380(uchar command ,uchar time)
{
SetPCF8563(command,time);
}
/*--------------------------------------------------------------------------------
调用方式:void time_display(uchar x0,uchar y0 )
函数说明:time_display()在指定的x0,y0坐标,以00:00:00格式显示当前时间。
---------------------------------------------------------------------------------*/
//uchar time[]="00:11:11";</P>
<P>void time_display(uchar x0,uchar y0,bit type) //液晶时间显示
{
uchar time[]="00:00:00";
uchar con[3];
uchar time_type;
GetPCF8563(0x02,3,con);</P>
<P>time[0]=(con[2]>>4)+'0';
time[1]=(con[2]&0x0f)+'0';
time[3]=(con[1]>>4)+'0';
time[4]=(con[1]&0x0f)+'0';
time[6]=(con[0]>>4)+'0';
time[7]=(con[0]&0x0f)+'0';</P>
<P>time[8]=0;
if(type==1)
{
time_type=0xff;
}
else
{
time_type=0;
}
dipchar0(x0,y0,F57,1,time_type,time);
}</P> |
|