我正在使用连接到Arduino Uno的sim900 gps / gprs模块屏蔽,我将如何解析我的AT命令的响应?或者,如何在发送AT命令后删除序列中打印的第1行?
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”,然后解析左边的数据,解析的最佳方法是什么
答案 0 :(得分:5)
我如何能够解析AT命令的响应?
是的,这是一个正确的问题。
如何在发送AT命令后删除序列中打印的第1行?
不,这是一个错误的问题,因为如果你关心回声是否开启,你做错了。
解析AT命令输出的正确策略如下:
"\r"
)。"\r\n"
终止,然后解析该行。
ATI
之类的遗留命令,对于解析这些命令,您可能会合理地关注回声。现在对于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>[...]]
因此在收到以&#34; + CMGL开头的一行后:&#34;直到你读到一个空行(&#34; \ r \ n&#34;)后面的所有行都属于这个。
关于一般代码结构和流程,请参阅this answer,尽管如上所述,响应的多行属性需要更多处理。我会使用类似下面的内容(未经测试的代码):
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("\r\n") {
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))
答案 1 :(得分:2)
第一行AT+CMGL="ALL"
似乎是回声。您可以通过ATE0
功能向您的模块发送setup
来停用它。
至于其他数据,它们都具有相同的格式。您可以使用不同的字符串操作函数轻松编写解析器。
答案 2 :(得分:1)
如果您使用的是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);
}
};