Merge pull request #29 from Lawlieta/master

【修改】AT Clinet 例程文件更新
This commit is contained in:
朱天龙 (Armink) 2018-10-19 15:54:51 +08:00 committed by GitHub
commit c298f99078
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -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