SIM900 AT 命令响应解析



我正在使用连接到Arduino Uno的SIM900 GPS/GPRS模块扩展板,我将如何解析我的AT命令的响应?或者发送 AT 命令后,我将如何删除串行中打印的第一行?

AT+CMGL="ALL"
+CMGL: 1,"REC READ","+XXXXXXXXXX","","16/04/25,15:20:59+32"
Hilp akp si ralphh the pogi one mmalit mi pizza hehehehehe
+CMGL: 2,"REC READ","+XXXXXXXXXX","","16/04/25,21:51:33+32"
Yow!!!
OK

上面输出的示例,我想摆脱AT+CMGL="ALL",然后解析剩下的数据。解析的最佳方法是什么?

如何解析 AT 命令的响应?

是的,这是正确的问题。

发送 AT 命令后,如何删除序列号中打印的第一行?

不,这是一个

错误的问题,因为如果你关心echo是否打开,你就做错了。

解析 AT 命令输出的正确策略如下:

  • 发送 AT 命令行(正确终止于 "r" )。
  • 读取从调制解调器接收到的字符,直到有一行以 "rn" 结尾,然后分析该行。
    • 如果该行等于最终结果代码,则命令行的所有输出都已完成(调制解调器已准备好接收新命令)。这一定是您测试的第一件事!
    • 如果运行的 AT 命令的信息文本响应行具有前缀(几乎所有都有),请检查该行是否以该行开头,如果是,则处理该行,否则忽略它。
    • 如果运行的 AT 命令没有前缀,您可能希望打印所有内容,直到收到最终结果代码。这仅适用于像 ATI 这样的遗留命令,并且对于解析这些命令,您可能合法地关心 echo 或不
    • 关心。
<小时 />

现在对于 AT+CMGL 命令,由于响应被拆分为多行,因此需要做更多的工作。

首先,最好的信息来源应该是制造商特定的AT文档,其次是标准化AT+CMGL命令的官方3GPP 27.005规范。

文本模式下 AT+CMGL 的响应指定为

+CMGL: <index>,<stat>,<oa/da>,[<alpha>],[<scts>][,<tooa/toda>,
<length>]<CR><LF><data>[<CR><LF>
+CMGL: <index>,<stat>,<da/oa>,[<alpha>],[<scts>][,<tooa/toda>,
<length>]<CR><LF><data>[...]]

因此,在收到以"+CMGL:"开头的行后,在您读取空行("\r")之前的所有行都属于此行。

请参阅有关一般代码结构和流程的此答案,尽管如上所述,响应的多行属性需要更多的处理。我会使用类似以下内容(未经测试的代码):

enum CMGL_state {
    CMGL_NONE,
    CMGL_PREFIX,
    CMGL_DATA
};
// Extra prototype needed because of Arduino's auto-prototype generation which often breaks compilation when enums are used.
enum CMGL_state parse_CMGL(enum CMGL_state state, String line);
enum CMGL_state parse_CMGL(enum CMGL_state state, String line)
{
    if (line.equals("rn") {
        return CMGL_NONE;
    }
    if (line.startsWith("+CMGL: ") {
        return CMGL_PREFIX;
    }
    if (state == CMGL_PREFIX || state == CMGL_DATA) {
        return CMGL_DATA;
    }
    return CMGL_NONE;
}
...
write_to_modem("AT+CMGL="ALL"r");
CMGL_state = CMGL_NONE;
goto start;
do {
    CMGL_state = parse_CMGL(CMGL_state, line);
    switch (CMGL_state) {
    case CMGL_PREFIX:
        process_prefix(line); // or whatever you want to do with this line
        break;
    case CMGL_DATA:
        process_data(line); // or whatever you want to do with this line
        break;
    case CMGL_NONE:
    default:
        break;
    }
start:
    line = read_line_from_modem();
} while (! is_final_result_code(line))

AT+CMGL="ALL"的第一行似乎是回声。您可以通过在setup函数中向模块发送ATE0来禁用它。

至于其余数据,它们都具有相同的格式。您可以使用不同的字符串操作函数轻松编写解析器。

如果您正在使用arduino我建议您使用一个好的库!你不需要处理这些东西。试试 http://www.gsmlib.org/或者你可以找到任何其他你喜欢的。

我将在这里举一个例子。

#include "SIM900.h"
#include <SoftwareSerial.h>
//If not used, is better to exclude the HTTP library,
//for RAM saving.
//If your sketch reboots itself proprably you have finished,
//your memory available.
//#include "inetGSM.h"
//If you want to use the Arduino functions to manage SMS, uncomment the lines below.
#include "sms.h"
SMSGSM sms;
//To change pins for Software Serial, use the two lines in GSM.cpp.
//GSM Shield for Arduino
//www.open-electronics.org
//this code is based on the example of Arduino Labs.
//Simple sketch to send and receive SMS.
int numdata;
boolean started=false;
char smsbuffer[160];
char n[20];
void setup() 
{
  //Serial connection.
  Serial.begin(9600);
  Serial.println("GSM Shield testing.");
  //Start configuration of shield with baudrate.
  //For http uses is raccomanded to use 4800 or slower.
  if (gsm.begin(2400)){
    Serial.println("nstatus=READY");
    started=true;  
  }
  else Serial.println("nstatus=IDLE");
  if(started){
    //Enable this two lines if you want to send an SMS.
    //if (sms.SendSMS("3471234567", "Arduino SMS"))
      //Serial.println("nSMS sent OK");
  }
};
void loop() 
{
  if(started){
    //Read if there are messages on SIM card and print them.
    if(gsm.readSMS(smsbuffer, 160, n, 20))
    {
      Serial.println(n);
      Serial.println(smsbuffer);
    }
    delay(1000);
  }
};

相关内容

  • 没有找到相关文章

最新更新