From b460d61c482fc0204e3d2e5e52e58042f5cebb92 Mon Sep 17 00:00:00 2001 From: zhongchao Date: Sun, 3 Jul 2022 22:37:19 +0800 Subject: [PATCH] change the time out --- .../core/function/map/identify/IdentifyOriginDataDrawer.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/identify/IdentifyOriginDataDrawer.kt b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/identify/IdentifyOriginDataDrawer.kt index 0eb10091c1..31900bad8b 100644 --- a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/identify/IdentifyOriginDataDrawer.kt +++ b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/identify/IdentifyOriginDataDrawer.kt @@ -180,7 +180,7 @@ class IdentifyOriginDataDrawer : Identify, IMoGoAutopilotStatusListener { private fun timeOut(time: Double): Boolean { val duration = (CallerAutoPilotStatusListenerManager.getCurWgs84SatelliteTime() * 1000).toLong() - (time * 1000).toLong() - return duration >= 1000 + return duration >= 500 } } \ No newline at end of file