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

Signed-off-by: chenyong <1521761801@qq.com>
This commit is contained in:
chenyong 2018-10-19 15:52:39 +08:00
parent c528d5af00
commit f5b6a37ecc
1 changed files with 16 additions and 0 deletions

View File

@ -112,7 +112,23 @@ __exit:
return result; 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 #ifdef FINSH_USING_MSH
#include <finsh.h> #include <finsh.h>
MSH_CMD_EXPORT(at_client_test, AT client send cmd and get response); 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 #endif