除了第一条短信之外,为什么我无法阅读其他收到的短信?

时间:2015-08-01 12:52:07

标签: arduino sms gsm iot sim900

我必须在我的gsm模块SIM900(连接到Arduino)上读取传入的短信,我想将发件人编号和信息打印到串口监视器上。

我首先使用AT命令配置gsm模块,而Response()函数将给出对AT命令的响应。

因为任何短信将采用以下格式

+ CMT:" [手机号码]"," [日期和时间]"    [留言机构]

所以,我首先提取+ CMT,之后我将获取手机号码,并且我们有消息体。我使用的代码是

char RcvdMsg[200] = "";
int RcvdCheck = 0;
int RcvdConf = 0;
int index = 0;
int RcvdEnd = 0;
char MsgMob[15];
char MsgTxt[50];
int MsgLength = 0;

void Config() // This function is configuring our SIM900 module i.e. sending the initial AT commands
{
delay(1000);
Serial.print("ATE0\r");
Response();
Serial.print("AT\r");
Response();
Serial.print("AT+CMGF=1\r");
Response();
Serial.print("AT+CNMI=1,2,0,0,0\r");
Response();
}


void setup()
{
  Serial.begin(9600);
  Config();
}

void loop()
{
  RecSMS();
}


void Response() // Get the Response of each AT Command
{
int count = 0;
Serial.println();
while(1)
{
if(Serial.available())
{
char data =Serial.read();
if(data == 'K'){Serial.println("OK");break;}
if(data == 'R'){Serial.println("GSM Not Working");break;}
}
count++;
delay(10);
if(count == 1000){Serial.println("GSM not Found");break;}

}
}

void RecSMS() // Receiving the SMS and extracting the Sender Mobile number & Message Text
{
if(Serial.available())
{
char data = Serial.read();
if(data == '+'){RcvdCheck = 1;}
if((data == 'C') && (RcvdCheck == 1)){RcvdCheck = 2;}
if((data == 'M') && (RcvdCheck == 2)){RcvdCheck = 3;}
if((data == 'T') && (RcvdCheck == 3)){RcvdCheck = 4;}
if(RcvdCheck == 4){RcvdConf = 1; RcvdCheck = 0;}

if(RcvdConf == 1)
{
if(data == '\n'){RcvdEnd++;}
if(RcvdEnd == 3){RcvdEnd = 0;}
RcvdMsg[index] = data;

index++;
if(RcvdEnd == 2){RcvdConf = 0;MsgLength = index-2;index = 0;}
if(RcvdConf == 0)
{
Serial.print("Mobile Number is: ");
for(int x = 4;x < 17;x++)
{
  MsgMob[x-4] = RcvdMsg[x];
  Serial.print(MsgMob[x-4]);
}
  Serial.println();
  Serial.print("Message Text: ");
for(int x = 46; x < MsgLength; x++)
{
  MsgTxt[x-46] = RcvdMsg[x];
  Serial.print(MsgTxt[x-46]);
}

Serial.println();
Serial.flush();


}
}
}
}

代码问题是

收到第一条短信后,我收到手机号码和留言信息。之后,我只将发送者号码打印到我的串行监视器上,而不是消息正文。

哪里出错了。我无法理解。

请帮帮我.......提前致谢。

2 个答案:

答案 0 :(得分:0)

如果它第一次运行,但后来没有运行,可能与某些未被重置的变量有关。您将所有变量声明在文件顶部,即使它们仅在RecSMS()函数中需要。尝试将声明移到RecSMS()的顶部。

void RecSMS() {
  char RcvdMsg[200] = "";
  int RcvdCheck = 0;
  int RcvdConf = 0;
  int index = 0;
  int RcvdEnd = 0;
  char MsgMob[15];
  char MsgTxt[50];
  int MsgLength = 0;

  if(Serial.available()) {

  // Rest of the code goes here

答案 1 :(得分:0)

谢谢@Michael。我认为这也解决了这个问题。

我在代码中发现的问题是,我们没有重置RecSMS函数中的所有变量。所以要解决这个问题,请在Serial.flush()语句之前保留以下代码。

RcvdCheck = 0;
RcvdConf = 0;
index = 0;
RcvdEnd = 0;
MsgMob[15];
MsgTxt[50];
MsgLength = 0;

这将解决问题