unsigned char dat//用于存储单片机接收发送缓冲寄存器SBUF里面的内容
sbit gewei=P2^2//个位选通定义
sbit shiwei=P2^3//十位选通定义
unsigned char code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x67,0x77,0x7c,0x39,0x5e,0x79,0x71}
//{0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x67,}// 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
void Delay(unsigned int tc) //延时程序
{
while( tc != 0 )
{unsigned int i
for(i=0i<100i++)
tc--}
}
void LED() //LED显示接收到的数据
{
shiwei=0
P0=~table[dat/16]
Delay(8)
shiwei=1
gewei=0
P0=~table[dat%16]
Delay(5)
gewei=1
}
void Init_Com(void)//功能:串口初始化,波特率9600,方式1
{
TMOD = 0x20
PCON = 0x00
SCON = 0x50
TH1 = 0xFd
TL1 = 0xFd
TR1 = 1
}
void main()//主程序功能:实现接收数据并把接收到的数据原样发送回去///////
{
Init_Com()//串口初始化
// P1=0xf0
while(1)
{
if ( RI ) //扫描判断是否接收到数据,
{
dat = SBUF //接收数据SBUF赋与dat
RI=0 //RI清零。
SBUF = dat //在原样把数据发送回去
}
LED()//显示接收到的数据
}
}
HANDLE comcom=CreateFile("COM1",GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,NULL)//打开串口
if(com==INVALID_HANDLE_VALUE){
printf("串口打开失败,可能就没串口,要么就是有个货占用了该串口,气死爹了")
return
}
DCB d
memset(d,0,sizeof(d))
d.RateBuand=9600
d.StopBits=0
d.ByteSize=8
SetCommState(com,d) //设置串口参数,停止位1位,字节长度8位,波特率9600
char *ch="hello,world"
DWORD count
WriteFile(com,ch,strlen(ch)+1,&count,NULL) //发送字符串。。
CloseHandle(com) //关闭串口
return
CreateFile,WriteFile是API函数,可以读写任何被最终封装为文件的设备,包括一些USB设备,还有硬盘上的文件,读写底层实现也是这个API。。
无聊,纯直接手打的,很常规的 *** 作。。。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)