我现在用8346做穿行通讯,开始时我时使用没接收到一个字符产生一个中断,然后处理,代码如下
#pragma interrupt called
void AS1_OnRxChar(void) { /* Write your code here ... */ byte ch;
//Read received character and send it if no error is detected if(AS1_RecvChar(&ch) == ERR_OK) AS1_SendChar(ch); }
现在我要处理字符串,比如说上位机发个"ONLED1",我就点亮LED1灯,可我不知道怎么判断接收到的是不是"ONLED1".哪位知道请多赐教啊! |