最近在搞18B20,发现其对CPU的不兼容性很高,因为其对时间信号的灵敏引起的
因为STC单片机的速度比8051速度快,归于1个时钟/机器周期高速单片机。速度快当然是它的长处,但关于要移植传统的8051程序而言,需求修正时序来完成某功用.
以下程序是ds18b20简略的驱动程序,其实是在网上Down的,经自己稍作修正之后,在STC12C5A60S2中调试经过的,最后读温度回来一个unsigned int,低12位便是温度数据。在主程序里进行运算即可得到实践温度值。呵呵~~
void delay_18B20(unsigned int i)
{
while(i–);
}
void Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1;
delay_18B20(80); //稍做延时
DQ = 0;
delay_18B20(800); //准确延时 大于 480us
DQ = 1;
delay_18B20(140);
x=DQ;
}
unsigned char ReadOneChar(void)
{
uchar i=0;
uchar dat = 0;
for (i=8;i>0;i–)
{
}
}
void WriteOneChar(uchar dat)
{
}
}
unsigned int ReadTemp(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int temp_value=0;
Init_DS18B20();
WriteOneChar(0xCC);
WriteOneChar(0x44);
delay_18B20(1000);
Init_DS18B20();
WriteOneChar(0xCC);
WriteOneChar(0xBE);
delay_18B20(1000);
a=ReadOneChar();
b=ReadOneChar();
temp_value = b<<8;
temp_value |= a;
return temp_value;
}