删除测试代码

进入自检界面崩溃Intent.FLAG_ACTIVITY_NEW_TASK
This commit is contained in:
liujing
2021-09-27 13:54:56 +08:00
committed by 董宏宇
parent 60671059af
commit 2f5b2b922f
2 changed files with 14 additions and 13 deletions

View File

@@ -20,10 +20,10 @@ public class VehicleMonitoring implements Handler.Callback {
private static final String TAG = "VehicleMonitoring";
private final Context mContext;
private final Handler mHandler = new Handler(this);
//自动驾驶状态下10分钟间隔弹框提示一次
private static final long AUTO_CHECK_STATUS_DELAY = 10 * 60 * 1000;//自动驾驶状态下10分钟弹框提示一次
//非自动驾驶测试数据 后期根据需求做修改 2min
private static final long MANUAL_CHECK_STATUS_DELAY = 2 * 60 * 1000;
//自动驾驶状态下**分钟间隔弹框提示一次 后期根据需求做修改,暂定30秒自检一次
private static final long AUTO_CHECK_STATUS_DELAY = 30 * 1000;
//非自动驾驶测试数据 后期根据需求做修改
private static final long MANUAL_CHECK_STATUS_DELAY = 30 * 1000;
//自动驾驶状态
private static int AutopilotStatus = MogoApisHandler.getInstance().getApis().getAdasControllerApi().getAutopilotStatus();