先给程序:
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit DS=P3^7;
uint temp;
uchar flag1;
uchar buff[6];
void delay(uint count)
{
uint i;
while(count)
{
i=200;
while(i>0)
i--;
count--;
}
}
void dsreset(void)
{
uint i;
DS=0;
i=103;
while(i>0)i--;
DS=1;
i=4;
while(i>0)i--;
}
bit tmpreadbit(void)
{
uint i;
bit dat;
DS=0;i++;
DS=1;i++;i++;
dat=DS;
i=8;while(i>0)i--;
return (dat);
}
uchar tmpread(void)
{
uchar i,j,dat;
dat=0;
for(i=1;i<=8;i++)
{
j=tmpreadbit();
dat=(j<<7)|(dat>>1);
}
return(dat);
}
void tmpwritebyte(uchar dat)
{
uint i;
uchar j;
bit testb;
for(j=1;j<=8;j++)
{
testb=dat&0x01;
dat=dat>>1;
if(testb)
{
DS=0;
i++;i++;
DS=1;
i=8;while(i>0)i--;
}
else
{
DS=0;
i=8;while(i>0)i--;
DS=1;
i++;i++;
}
}
}
void tmpchange(void)
{
dsreset();
delay(1);
tmpwritebyte(0xcc);
tmpwritebyte(0x44);
}
uchar tmp()
{
float tt;
uchar a,b;
dsreset();
delay(1);
tmpwritebyte(0xcc);
tmpwritebyte(0xbe);
a=tmpread();
b=tmpread();
temp=b;
temp<<=8;
temp=temp|a;
tt=temp*0.0625;
temp=tt*10+0.5;
return temp;
}
void UART_init()
{
SCON=0X50; //设置为工作方式1
TMOD=0X20; //设置计数器工作方式2
PCON=0X80; //波特率加倍
TH1=0XF9;
TL1=0XF9;
ES=1; //打开接收中断
EA=1; //打开总中断
TR1=1;
}
void send(char *parr)
{
do{
SBUF = *parr++;//发送数据
while(!TI); //等待发送完成标志为一
TI = 0; //标志请0
}while(*parr); //保持循环直到字符为'\0'
}
void main()
{
uchar tempature,B1,B2t,B2,B3;
UART_init();
while(1)
{
tmpchange();
tempature = tmp();
B1=tempature/100;
B2t=tempature%100;
B2=B2t/10;
B3=B2t%10;
buff[0]=0x00;
buff[1]=B1+'0';
buff[2]=B2+'0';
buff[3]=0x2E;
buff[4]=B3+'0';
buff[5]=0xBB;
send(buff);
delay(1000);
}
}
此程序在波特率为4800的情况下能够正常运行,一但到了9600的波特率的情况
大佬们快帮帮我
|