麻烦大神看一下如下程序,是通过串口发送“ok”或“off”来控制led灯的亮灭,但是发送“OK”的时候能控制灯亮,发送“off”的时候无法控制灯灭,不知道哪个地方出错了(个人怀疑是在strcmp函数出错,但不知如何修改),麻烦大神指教,谢谢!!
[mw_shl_code=c,true]#include <reg51.h>
#include <string.h>
sbit led1 = P1^0;
int i=0;
char str[10];
char on[] = "on";
char off[] = "off";
void Bluetooth_init()
{
TMOD=0x20;
TH1=0xfd;
TL1=0xfd;
TR1=1;
SM0=0;
SM1=1;
REN=1;
EA=1;
ES=1;
}
void main()
{
Bluetooth_init();
while(1)
{
}
}
void ser() interrupt 4
{
if(RI)
{
RI=0;
if(SBUF!='\0')
{
str[i++]= SBUF;
}
else
{
str[i++]='\0';
i=0;
}
if(strcmp(str,on)==0)led1 = 0;
if(strcmp(str,off)==0)led1 = 1;
}
}[/mw_shl_code]
|