哪位大哥能帮忙编个STC10L的串口程序。 要求用方式1波特率为9600;串口发送的什么,接收的就是发送的数据
我用的晶振是12M的,要求就是PC用SSCOM32通过串口发送譬如c00001c0字符串时,STC10L04XE就返回c00001c0字符串给PC...
我用的晶振是12M的,要求就是PC用SSCOM32通过串口发送譬如c0 00 01 c0字符串时,STC10L04XE就返回c0 00 01 c0字符串给PC
展开
3个回答
展开全部
让德国人
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <STC10.h>
#include <intrins.h>
#include <stdio.h>
#define uchar unsigned char
#define uint unsigned int
uchar show;
void System_Init()
{
TMOD=0x20;
TH1=0xD9;//波特率9600//
TL1=0xD9;
SCON=0x50;
AUXR=0x40;//1T模式//
ET1=0;
TR1=1;
EA=1;
ES=1;
PS=1;
}
void main()
{
System_Init();
while(1)
{
//SBUF=0x41;
//while(!TI);
//TI=0;
if(RI==1)
{
show=SBUF;
P1=show;
RI=0;
SBUF=show;
while(!TI);
TI=0;
}
}
}
#include <intrins.h>
#include <stdio.h>
#define uchar unsigned char
#define uint unsigned int
uchar show;
void System_Init()
{
TMOD=0x20;
TH1=0xD9;//波特率9600//
TL1=0xD9;
SCON=0x50;
AUXR=0x40;//1T模式//
ET1=0;
TR1=1;
EA=1;
ES=1;
PS=1;
}
void main()
{
System_Init();
while(1)
{
//SBUF=0x41;
//while(!TI);
//TI=0;
if(RI==1)
{
show=SBUF;
P1=show;
RI=0;
SBUF=show;
while(!TI);
TI=0;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询