找回密码
 注册
搜索
查看: 2259|回复: 12

[讨论] I2C总线驱动程序(用两个普通IO模拟I2C总线)--(免费)

[复制链接]
发表于 2006-1-21 14:10:00 | 显示全部楼层 |阅读模式
文件: PCF8563T.C
1 /**————————————————————
2 〖说明〗I2C总线驱动程序(用两个普通IO模拟I2C总线)
3 包括100Khz(T=10us)的标准模式(慢速模式)选择,
4 和400Khz(T=2.5us)的快速模式选择,
5 默认11.0592Mhz的晶振。

10 —————————————————————*/
11
12 #ifndef SDA
13 #define SDA P0_0
14 #define SCL P0_1
15 #endif
16
17 extern uchar SystemError;
18
19 #define uchar unsigned char
20 #define uint unsigned int
21 #define Byte unsigned char
22 #define Word unsigned int
23 #define bool bit
24 #define true 1
25 #define false 0
26
27 #define SomeNOP(); _nop_();_nop_();_nop_();_nop_();
28
29 /**--------------------------------------------------------------------------------
30 调用方式:void I2CStart(void) ﹫2001/07/0 4
31 函数说明:私有函数,I2C专用
32 ---------------------------------------------------------------------------------*/
33 void I2CStart(void)
34 {
35 EA=0;
36 SDA=1; SCL=1; SomeNOP();//INI
37 SDA=0; SomeNOP(); //START
38 SCL=0;
39 }
40
41 /**--------------------------------------------------------------------------------
42 调用方式:void I2CStop(void) ﹫2001/07/0 4
43 函数说明:私有函数,I2C专用
44 ---------------------------------------------------------------------------------*/
45 void I2CStop(void)
46 {
47 SCL=0; SDA=0; SomeNOP(); //INI
48 SCL=1; SomeNOP(); SDA=1; //STOP
49 EA=1;
50 }
51
52 /**--------------------------------------------------------------------------------
53 调用方式:bit I2CAck(void) ﹫2001/07/0 4
54 函数说明:私有函数,I2C专用,等待从器件接收方的应答
55 ---------------------------------------------------------------------------------*/
56 bool WaitAck(void)
57 {
58 uchar errtime=255;//因故障接收方无ACK,超时值为255。
59 SDA=1;SomeNOP();
60 SCL=1;SomeNOP();
61 while(SDA) {errtime--; if (!errtime) {I2CStop();SystemError=0x11;return false;}}
62 SCL=0;
63 return true;
第1 页
文件: PCF8563T.C 2001-11-27, 18:39:20
64 }
65
66 /**--------------------------------------------------------------------------------
67 调用方式:void SendAck(void) ﹫2001/07/0 4
68 函数说明:私有函数,I2C专用,主器件为接收方,从器件为发送方时,应答信号。
69 ---------------------------------------------------------------------------------*/
70 void SendAck(void)
71 {
72 SDA=0; SomeNOP();
73 SCL=1; SomeNOP();
74 SCL=0;
75 }
76
77 /**--------------------------------------------------------------------------------
78 调用方式:void SendAck(void) ﹫2001/07/0 4
79 函数说明:私有函数,I2C专用,主器件为接收方,从器件为发送方时,非应答信号。
80 }**--------------------------------------------------------------------------------
81 void SendNotAck(void)
82 {
83 SDA=1; SomeNOP();
84 SCL=1; SomeNOP();
85 SCL=0;
86 }
87
88 /**--------------------------------------------------------------------------------
89 调用方式:void I2CSend(uchar ch) ﹫2001/07/0 5
90 函数说明:私有函数,I2C专用
91 ---------------------------------------------------------------------------------*/
92 void I2CSendByte(Byte ch)
93 {
94 uchar i=8;
95 while (i--)
96 {
97 SCL=0;_nop_();
98 SDA=(bit)(ch&0x80); ch<<=1; SomeNOP();
99 SCL=1; SomeNOP();
100 }
101 SCL=0;
102 }
103
104 /**--------------------------------------------------------------------------------
105 调用方式:uchar I2CReceive(void) ﹫2001/07/0 5
106 函数说明:私有函数,I2C专用
107 ---------------------------------------------------------------------------------*/
108 Byte I2CReceiveByte(void)
109 {
110 uchar i=8;
111 Byte ddata=0;
112 SDA=1;
113 while (i--)
114 {
115 ddata<<=1;
116 SCL=0;SomeNOP();
117 SCL=1;SomeNOP();
118 ddata|=SDA;
119 }
120 SCL=0;
121 return ddata;
122 }
123
124
125 //---------------------------------------------------------------------------
126 //开始PCF8563T驱动程序
第2 页
文件: PCF8563T.C 2001-11-27, 18:39:20
127 /**--------------------------------------------------------------------------------
128 调用方式:void GetPCF8563(uchar firsttype,uchar count,uchar *buff) ﹫2001/08/0 7
129 函数说明:读取时钟芯片PCF8563的时间,设置要读的第一个时间类型firsttype,并设置读取
130 的字节数,则会一次把时间读取到buff中。顺序是:
131 0x02:秒/0x03:分/0x04:小时/0x05:日/0x06:星期/0x07:月(世纪)/0x08:年
132 ---------------------------------------------------------------------------------*/
133 void GetPCF8563(uchar firsttype,uchar count,uchar *buff)
134 {
135 uchar i;
136 I2CStart();
137 I2CSendByte(0xA2);
138 WaitAck();
139 I2CSendByte(firsttype);
140 WaitAck();
141
142 I2CStart();
143 I2CSendByte(0xA3);
144 WaitAck();
145
146 for (i=0;i<count;i++)
147 {
148 buff=I2CReceiveByte();
149 if (i!=count-1) SendAck();//除最后一个字节外,其他都要从MASTER发应答。
150 }
151
152 SendNotAck();
153 I2CStop();
154 }
155
156
157 /**--------------------------------------------------------------------------------
158 调用方式:void SetPCF8563(uchar timetype,uchar value) ﹫2001/08/0 7
159 函数说明:调整时钟。timetype是要改的时间类型,value是新设置的时间值(BCD格式)。
160 0x02:秒/0x03:分/0x04:小时/0x05:日/0x06:星期/0x07:月(世纪)/0x08:年
161 ---------------------------------------------------------------------------------*/
162 void SetPCF8563(uchar timetype,uchar value)
163 {
164 I2CStart();
165 I2CSendByte(0xA2);
166 WaitAck();
167 I2CSendByte(timetype);
168 WaitAck();
169 I2CSendByte(value);
170 WaitAck();
171 I2CStop();
172 }
173
174 /**--------------------------------------------------------------------------------
175 调用方式:void SetAlarmHour(uchar count) ﹫2001/08/0 7
176 函数说明:设置报警闹钟在一天的第count点报警。例如:count=23,则在晚上11点报警。
177 ---------------------------------------------------------------------------------*/
178 void SetAlarm(uchar alarmtype,uchar count)
179 {
180 SetPCF8563(0x01,0x02);
181 SetPCF8563(alarmtype,count);
182 }
183
184 /**--------------------------------------------------------------------------------
185 调用方式:void CleanAlarm(void) ﹫2001/08/0 7
186 函数说明:清除所有报警设置。
187 ---------------------------------------------------------------------------------*/
188 void CleanAlarm(void)
189 {
第3 页
文件: PCF8563T.C 2001-11-27, 18:39:20
190 SetPCF8563(0x01,0x00);
191 SetPCF8563(0x09,0x80);
192 SetPCF8563(0x0A,0x80);
193 SetPCF8563(0x0B,0x80);
194 SetPCF8563(0x0C,0x80);
195 // SetPCF8563(0x0D,0x00);
196 // SetPCF8563(0x0E,0x03);
197 }
198
199
200 /*--------------------------------------------------------------------------------
201 调用方式:uchar read1380(uchar command )
202 函数说明:read1380()返回当前时间, command指要返回的时间类型。
203 秒:81H 分钟:83H 小时:85H 日期:87H 星期:89H 星期几:8BH 年:8D H
204 ---------------------------------------------------------------------------------*/
205 uchar read1380 (uchar command)
206 {
207 uchar time;
208 GetPCF8563(command,1,&time);
209 return time;
210 }
211
212 /*--------------------------------------------------------------------------------
213 调用方式:void write1380(uchar command ,uchar time )
214 函数说明:write1380()往HT1380写命令和数据,command是命令字, time是后写入的数据
215 ---------------------------------------------------------------------------------*/
216 void write1380(uchar command ,uchar time)
217 {
218 SetPCF8563(command,time);
219 }
220
221
222 /*--------------------------------------------------------------------------------
223 调用方式:void time_display(uchar x0,uchar y0 )
224 函数说明:time_display()在指定的x0,y0坐标,以00:00:00格式显示当前时间。
225 ---------------------------------------------------------------------------------*/
226 //uchar time[]="00:11:11";
227
228 void time_display(uchar x0,uchar y0,bit type) //液晶时间显示
229 {
230 uchar time[]="00:00:00";
231 uchar con[3];
232 uchar time_type;
233 GetPCF8563(0x02,3,con);
234
235 time[0]=(con[2]>>4)+'0';
236 time[1]=(con[2]&0x0f)+'0';
237 time[3]=(con[1]>>4)+'0';
238 time[4]=(con[1]&0x0f)+'0';
239 time[6]=(con[0]>>4)+'0';
240 time[7]=(con[0]&0x0f)+'0';
241
242 time[8]=0;
243 if(type==1)
244 {
245 time_type=0xff;
246 }
247 else
248 {
249 time_type=0;
250 }
251 dipchar0(x0,y0,F57,1,time_type,time);
252 }
发表于 2006-1-21 16:35:00 | 显示全部楼层
这不是单片机的程序吗?许久未见,^_^
点评回复

使用道具 举报

发表于 2006-1-21 16:52:00 | 显示全部楼层
<P>贴一个我3年前写的代码,移植到ARM上只要修改define定义,函数后面去掉small,提供页写模式(burst write),效率非常高</P><P>#include &lt;w77c32.h&gt;
#include &lt;intrins.h&gt;</P><P>#define LOW 0
#define HIGH 1
#define FALSE 0
#define TRUE 1</P><P>typedef unsigned char INT8U;
typedef unsigned int INT16U;
sbit SCL=P1^6;
sbit SDA=P1^7;
INT8U E2PRomPageBuf[256];
/*
*******************************************************************</P><P>******************************
*/
void Delay10ms(void) small
{</P><P>//put ur delay func here,for debug use
}
/*
*******************************************************************</P><P>******************************
*/
void I2CInit(void) small
{
    SDA=HIGH;
    SCL=HIGH;
}
/*
*******************************************************************</P><P>******************************
*/
static void I2CStart(void) small
{
    SDA=HIGH;
    SCL=HIGH;
    SDA=LOW;
    _nop_();
    SCL=LOW;
}
/*
*******************************************************************</P><P>******************************
*/
static void I2CStop(void) small
{
    SCL=LOW;
    SDA=LOW;
    SCL=HIGH;
    SDA=HIGH;
}
/*
*******************************************************************</P><P>******************************
*/
static bit I2CSend(INT8U ch) small
{
    INT8U i;
    for(i=0;i&lt;8;i++)
    {
        SDA=(bit)(ch&amp;0x80);
        SCL=HIGH;
        ch&lt;&lt;=1;
        SCL=LOW;
    }
    SDA=HIGH;
    SCL=HIGH;
    _nop_(); /* wait slave-ACK */
    //_nop_();_nop_();_nop_();
    if(SDA) {SCL=LOW;return(FALSE);}
    else {SCL=LOW;return(TRUE);}
}
/*
*******************************************************************</P><P>******************************
*/
static INT8U I2CReceive(void) small
{
    INT8U i,ch=0;
    for(i=0;i&lt;8;i++)
    {
        ch&lt;&lt;=1;
        SCL=HIGH;
        ch|=SDA;
        SCL=LOW;
    }
    SDA=HIGH; /* to reduce IO power consunption */
    return(ch);
}
/*
*******************************************************************</P><P>******************************
*/
static void I2CAck(void) small
{
    SDA=LOW;
    SCL=HIGH;
    _nop_();
    _nop_();
    SCL=LOW;
    SDA=HIGH; /* to reduce IO power consunption */
}
/*
*******************************************************************</P><P>******************************
*/
static void I2CNoAck(void) small
{
    SDA=HIGH;
    SCL=HIGH;
    _nop_();
    _nop_();
    SCL=LOW;
}
/*
*******************************************************************</P><P>******************************
*/
bit E2PRomByteWrite(INT8U romnum,INT16U address,INT8U ch) small
{
    romnum&lt;&lt;1;
    romnum&amp;=0x06;
    romnum|=0xA0;
    I2CStart();
    if(!I2CSend(romnum))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(address&gt;&gt;8)))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(address&amp;0x00FF)))
        {I2CStop();return(FALSE);};
    if(!I2CSend(ch))
        {I2CStop();return(FALSE);};
    I2CStop();
    return(TRUE);
}
/*
*******************************************************************</P><P>******************************
*/
bit E2PRomPageWrite(INT16U page) small
{
    INT8U i;
    page&lt;&lt;=7;
    I2CStart();
    if(!I2CSend(0xA0))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&gt;&gt;8)))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&amp;0x00FF)))
        {I2CStop();return(FALSE);};
    for(i=0;i&lt;128;i++)
        if(!I2CSend(E2PRomPageBuf))
             {I2CStop();return(FALSE);};
    I2CStart();
    if(!I2CSend(0xA2))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&gt;&gt;8)))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&amp;0x00FF)))
        {I2CStop();return(FALSE);};
    for(i=128;i&lt;256;i++)
        if(!I2CSend(E2PRomPageBuf))
             {I2CStop();return(FALSE);};
    I2CStop();
    return(TRUE);
}
/*
*******************************************************************</P><P>******************************
*/
bit E2PRomPageRead(INT16U page) small
{
    INT8U i;
    page&lt;&lt;=7;
    I2CStart();
    if(!I2CSend(0xA0))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&gt;&gt;8)))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&amp;0x00FF)))
        {I2CStop();return(FALSE);};
    I2CStart();
    if(!I2CSend(0xA1))
        {I2CStop();return(FALSE);};
    for(i=0;i&lt;127;i++)
    {
        E2PRomPageBuf=I2CReceive();
        I2CAck();
    }
    E2PRomPageBuf=I2CReceive();
    I2CNoAck();
    I2CStop();
    I2CStart();
    if(!I2CSend(0xA2))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&gt;&gt;8)))
        {I2CStop();return(FALSE);};
    if(!I2CSend((INT8U)(page&amp;0x00FF)))
        {I2CStop();return(FALSE);};
    I2CStart();
    if(!I2CSend(0xA3))
        {I2CStop();return(FALSE);};
    for(i=127;i&lt;256;i++)
    {
        E2PRomPageBuf=I2CReceive();
        I2CAck();
    }
    E2PRomPageBuf=I2CReceive();
    I2CNoAck();
    I2CStop();
    return(TRUE);
}</P>[br]<p align=right><font color=red>+5 RD币</font></p>
点评回复

使用道具 举报

发表于 2006-1-21 19:21:00 | 显示全部楼层
<P>你们的程序对我蛮有用的,谢谢两位的无私奉献</P><P>在你们程序中</P><P>#define SomeNOP(); _nop_();_nop_();_nop_();_nop_();怎么理解啊,请大侠指点.</P><P>如果有RGB接口的程序,也请贴下,让偶们也学习学习,谢谢</P>[[em06][em06][em06]
点评回复

使用道具 举报

发表于 2006-1-21 20:26:00 | 显示全部楼层
就是等待,在执行NOP指令
点评回复

使用道具 举报

发表于 2006-1-22 14:33:00 | 显示全部楼层
<DIV class=quote><B>以下是引用<I>zorro7758</I>在2006-1-21 19:21:53的发言:</B>

<P>你们的程序对我蛮有用的,谢谢两位的无私奉献</P>
<P>在你们程序中</P>
<P>#define SomeNOP(); _nop_();_nop_();_nop_();_nop_();怎么理解啊,请大侠指点.</P>
<P>如果有RGB接口的程序,也请贴下,让偶们也学习学习,谢谢</P>[[em06][em06][em06]</DIV>

这是单片机的指令,一条空指令,用来延时。手机程序里应该没有。[br]<p align=right><font color=red>+3 RD币</font></p>
点评回复

使用道具 举报

发表于 2006-1-22 21:12:00 | 显示全部楼层
<P>如果是空指令的话,我用个分号是不是就可以代替了~~~~</P>[em12][em12][em12]
点评回复

使用道具 举报

发表于 2006-1-22 22:26:00 | 显示全部楼层
<DIV class=quote><B>以下是引用<I>zorro7758</I>在2006-1-22 21:12:01的发言:</B>

<P>如果是空指令的话,我用个分号是不是就可以代替了~~~~</P>[em12][em12][em12]</DIV>


会被编译器优化掉的,没用[br]<p align=right><font color=red>+3 RD币</font></p>
点评回复

使用道具 举报

发表于 2006-1-23 20:17:00 | 显示全部楼层
<P>那这样呢?</P><P>for(i=0;i&lt;1,i++)</P><P>{</P><P>    ;</P><P>}</P><P>跟上面一样吧~~~`</P>[em12][em12][em12]
点评回复

使用道具 举报

发表于 2007-7-16 14:45:00 | 显示全部楼层
受益匪浅呀,正需要[em08]
点评回复

使用道具 举报

发表于 2007-9-29 14:17:00 | 显示全部楼层
你可以通过反汇编看一下,达不到一个nop延时的,论精确还是汇编好啊
点评回复

使用道具 举报

发表于 2007-9-29 15:32:00 | 显示全部楼层
还有用,谢谢!
点评回复

使用道具 举报

发表于 2014-11-12 12:11:10 | 显示全部楼层
受用了
点评回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|52RD我爱研发网 ( 沪ICP备2022007804号-2 )

GMT+8, 2024-11-23 17:22 , Processed in 0.052022 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表