Эх сурвалжийг харах

【修改】AT Clinet 例程文件更新

Signed-off-by: chenyong <1521761801@qq.com>
chenyong 7 жил өмнө
parent
commit
f5b6a37ecc
1 өөрчлөгдсөн 16 нэмэгдсэн , 0 устгасан
  1. 16 0
      at_client_sample.c

+ 16 - 0
at_client_sample.c

@@ -112,7 +112,23 @@ __exit:
 
     return result;
 }
+
+int at_client_test_init(int argc, char **argv)
+{
+#define AT_CLIENT_RECV_BUFF_LEN         512
+
+    if (argc != 2)
+    {
+        rt_kprintf("at_client_init <dev_name>   -- AT client initialize.\n");
+        return -RT_ERROR;
+    }
+
+    at_client_init(argv[1], AT_CLIENT_RECV_BUFF_LEN);
+
+    return RT_EOK;
+}
 #ifdef FINSH_USING_MSH
 #include <finsh.h>
 MSH_CMD_EXPORT(at_client_test, AT client send cmd and get response);
+MSH_CMD_EXPORT_ALIAS(at_client_test_init, at_client_init, initialize AT client);
 #endif