51单片机怎么接收16位的整数?比如我用A单片机发送整数如234,用B单片机怎么接收? 发送的代码
51单片机怎么接收16位的整数?比如我用A单片机发送整数如234,用B单片机怎么接收?发送的代码已经解决,接收的代码还不合适!求接收函数(C语言)...
51单片机怎么接收16位的整数?比如我用A单片机发送整数如234,用B单片机怎么接收? 发送的代码已经解决,接收的代码还不合适!求接收函数(C语言)
展开
展开全部
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
unsigned char code table[] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
void init()
{
TMOD=0x20;
TH1=0xFD; //baud rate 9600bit/s
TL1=0xFD;
TR1=1;
REN=1;
SM0=0; //串口方式1
SM1=1;
EA=1;
}
void display()
{
P1=0xfe;
P0=[temp/10000];
P0=0;
P1=0xfd;
P0=[temp%10000/1000];
P0=0;
P1=0xfb;
P0=[temp%10000/1000];
P0=0;
P1=0xf7;
P0=[temp%10000%1000/100];
P0=0;
P1=0xef;
P0=[temp%10000%1000%100/10];
P0=0;
P1=0xdf;
P0=[temp%10000%1000%100/10];
P0=0;
}
void main()
{
init();
while(1)
{
if(RI==1)
{
RI=0;
temp=SBUF;
}
display();
}
}
#define uchar unsigned char
#define uint unsigned int
unsigned char code table[] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
void init()
{
TMOD=0x20;
TH1=0xFD; //baud rate 9600bit/s
TL1=0xFD;
TR1=1;
REN=1;
SM0=0; //串口方式1
SM1=1;
EA=1;
}
void display()
{
P1=0xfe;
P0=[temp/10000];
P0=0;
P1=0xfd;
P0=[temp%10000/1000];
P0=0;
P1=0xfb;
P0=[temp%10000/1000];
P0=0;
P1=0xf7;
P0=[temp%10000%1000/100];
P0=0;
P1=0xef;
P0=[temp%10000%1000%100/10];
P0=0;
P1=0xdf;
P0=[temp%10000%1000%100/10];
P0=0;
}
void main()
{
init();
while(1)
{
if(RI==1)
{
RI=0;
temp=SBUF;
}
display();
}
}
更多追问追答
追问
这代码太简单了
是收到8位的数据
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
意法半导体(中国)投资有限公司
2021-01-14 广告
2021-01-14 广告
单片机(Microcontrolers)是一种集成电路芯片,是采用超大规模集成电路技术把具有数据处理能力的中央处理器CPU、随机存储器RAM、只读存储器ROM、多种I/O口和中断系统、定时器/计数器等功能(可能还包括显示驱动电路、脉宽调制电...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
展开全部
比如我用A单片机发送整数如234,
--串口发送?
--连好导线,编好程序。
--就会收到 234。
--串口发送?
--连好导线,编好程序。
--就会收到 234。
更多追问追答
追问
要能接收到16位的整数
比如800这么大的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
例如串口
uchar a,b;
uint temp;
a=get_usart();
b=get_usart();
temp=(uint)a*0x100+b;
例如自定义的协议
uchar a;
uint temp;
temp=0;
for(a=0;a<16;a++)
{
//先发高位
temp<<=1;
if(get_bit()==1)temp|=0x01;
//先发低位
temp>>=1;
if(get_bit()==1)temp|=0x8000;
}
uchar a,b;
uint temp;
a=get_usart();
b=get_usart();
temp=(uint)a*0x100+b;
例如自定义的协议
uchar a;
uint temp;
temp=0;
for(a=0;a<16;a++)
{
//先发高位
temp<<=1;
if(get_bit()==1)temp|=0x01;
//先发低位
temp>>=1;
if(get_bit()==1)temp|=0x8000;
}
更多追问追答
追问
单片机一次发8位
追答
那你就参考第一个列吧,第二个是指你的两个单片机随便接了两个口,根据1和0的长度来发送数据进行通讯
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询