51单片机串口接收到一个字符串后怎样从中提取想的内容?请提供例程!

2024-11-07 18:37:32
推荐回答(1个)
回答(1):

可以。
unsigned char buff[32];
unsigned int len;
unsigned char receiveByte()
{
while(RI==0); //等待接收数据
RI = 0;
return SBUF;
}
void receiveString()
{
unsigned char bbyte;
len = 0;
do
{
bbyte = receiveByte();
buff[len++] = bbyte;
}
while(bbyte!=0x00);
}
这个程序可以接受一个字符串,就是以00结尾的字符串。