Browse Source

[net][at] Modify the AT commands response ERROR judgment method.

chenyong 6 years ago
parent
commit
2e8d994485
2 changed files with 2 additions and 2 deletions
  1. 1 1
      components/net/at/include/at.h
  2. 1 1
      components/net/at/src/at_client.c

+ 1 - 1
components/net/at/include/at.h

@@ -27,7 +27,7 @@
 
 
 #include <rtthread.h>
 #include <rtthread.h>
 
 
-#define AT_SW_VERSION                  "0.2.2"
+#define AT_SW_VERSION                  "0.2.3"
 
 
 #define DBG_ENABLE
 #define DBG_ENABLE
 #define DBG_SECTION_NAME               "AT"
 #define DBG_SECTION_NAME               "AT"

+ 1 - 1
components/net/at/src/at_client.c

@@ -547,7 +547,7 @@ static void client_parser(at_client_t client)
                     /* get the end data by response result, return response state END_OK. */
                     /* get the end data by response result, return response state END_OK. */
                     client->resp_status = AT_RESP_OK;
                     client->resp_status = AT_RESP_OK;
                 }
                 }
-                else if ((memcmp(client->recv_buffer, AT_RESP_END_ERROR, strlen(AT_RESP_END_ERROR)) == 0)
+                else if (strstr(client->recv_buffer, AT_RESP_END_ERROR)
                         || (memcmp(client->recv_buffer, AT_RESP_END_FAIL, strlen(AT_RESP_END_FAIL)) == 0))
                         || (memcmp(client->recv_buffer, AT_RESP_END_FAIL, strlen(AT_RESP_END_FAIL)) == 0))
                 {
                 {
                     client->resp_status = AT_RESP_ERROR;
                     client->resp_status = AT_RESP_ERROR;