微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > 51单片机控制TC35 之发送AT连机命令

51单片机控制TC35 之发送AT连机命令

时间:11-13 来源:互联网 点击:
一开始犯了2个错误;

1:发送联机指令AT的时候,中断接受函数,RsBuf[RsPoint++]=SBUF;

中的RsPoint应该置零。

2:串口中断函数中 if((RsPoint

否则接受到一些别的数据。

且在中断中RI必须清零

只发3个关键的函数


/***********************发送联机指令******************************
*功 能: 串口发送数组命令到TC35,"AT",
*形 参:
*返 回 值:
*备 注: 测试GSM模块是否连接正确
*****************************************************************/
void Send_AT(void)
{
uchar *p,i=ATwaits; //ATwaits=10
//lcd_disp_str(RsBuf,1);

while(i--) //测试10次,在某一次成功就退出
{
//RsBuf[0]=\0; //有下一句就不需要这句 //清空接收缓冲区
RsPoint=0;
// 本来只有\r 我添加的\n 后来证明 可以不加的
SendString("AT\r");
//****************************等待应答"OK"
ES=1; //必须中断 // 串口中断应许
delayms_100ms();//等待接受数据完成//delayms_1000ms();delayms_1000ms();

p=mystrstr(RsBuf,"OK"); //接收到的数据存在RsBuf
if(p!=NULL) //接收到"OK"

{
lcd_disp_str("GSM module is OK",1);
lcd_disp_str("Will contimue! ",2);
delayms_1000ms();delayms_1000ms();delayms_1000ms();delayms_1000ms();
lcd_disp_str(" ",1);
lcd_disp_str(" ",2);
break;
}
lcd_disp_str("No GSM connected",1);delayms_1000ms();
lcd_disp_str(" ",1);
}

}

// 通讯中断接收程序 中断函数无返回值
void uart_rx(void) interrupt 4 using 3 //放在这里 和放在main()里面是一样的
{
EA=0;
if((RsPoint//if(RI)
{
RI=0;
RsBuf[RsPoint++]=SBUF;
//RsBuf[RsPoint]=0x00; //将下一个数据清零
//SendASC(RsBuf[RsPoint-1]);
//lcd_disp_str(RsBuf ,2);
}
EA=1;
}

/***********************字符串查找********************************
*功 能: 查找字符串
*形 参: char *s, char *t ;在s中查找t
*返 回 值: s_temp(t在s中的位置)成功 0 (失败 )
*备 注:
*****************************************************************/
char *mystrstr(char *s, char *t)
{
char *s_temp; /*the s_temp point to the s*/
char *m_temp; /*the mv_tmp used to move in the loop*/
char *t_temp; /*point to the pattern string*/

if (NULL == s || NULL == t) return NULL;

/*s_temp point to the s string*/
for (s_temp = s; *s_temp != \0; s_temp++)
{
/*the move_tmp used for pattern loop*/
m_temp = s_temp;
/*the pattern string loop from head every time*/
for (t_temp = t; *t_temp == *m_temp; t_temp++, m_temp++);
/*if at the tail of the pattern string return s_tmp*/
if (*t_temp == \0) return s_temp;

}
return NULL;
}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top