修改at_client.c 传入参数timeout单位是ms,此处需要转换为tick

This commit is contained in:
slyant 2018-10-18 21:01:27 +08:00
parent ce2313d2d3
commit a6b51ada1e
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ int at_client_obj_wait_connect(at_client_t client, rt_uint32_t timeout)
while (1) while (1)
{ {
/* Check whether it is timeout */ /* Check whether it is timeout */
if (rt_tick_get() - start_time > timeout) if (rt_tick_get() - start_time > rt_tick_from_millisecond(timeout))
{ {
LOG_E("wait connect timeout (%d millisecond)!", timeout); LOG_E("wait connect timeout (%d millisecond)!", timeout);
result = -RT_ETIMEOUT; result = -RT_ETIMEOUT;