ソースを参照

Merge pull request #1909 from slyant/mydev-change

修改at_client.c 传入参数timeout单位是ms,此处需要转换为tick
Bernard Xiong 6 年 前
コミット
2ae638e22d
1 ファイル変更1 行追加1 行削除
  1. 1 1
      components/net/at/src/at_client.c

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

@@ -363,7 +363,7 @@ int at_client_obj_wait_connect(at_client_t client, rt_uint32_t timeout)
     while (1)
     {
         /* 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);
             result = -RT_ETIMEOUT;