[2.11.0 fix] 解决离站成功后,自驾命令发送bug

This commit is contained in:
wangmingjun
2022-10-13 09:10:00 +08:00
parent 0169a68d1e
commit c3ef16ee43

View File

@@ -475,20 +475,13 @@ public class BusOrderModel {
*/
private void leaveStationSuccess() {
//开启自动驾驶 2.10.0: 如果自动驾驶状态下开启, 非自动驾驶状态下不开启,需手动点击自动驾驶按钮开启
isGoingToNextStation = true;
if (CallerAutoPilotStatusListenerManager.INSTANCE.getAutoPilotStatusInfo().getState()
== IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_RUNNING){
startAutopilot(false);
}else {
firstStartAutopilot = 0;
}
if (isGoingToNextStation) {
// 为了避免恢复自动驾驶时重复的接口请求
return;
}
isGoingToNextStation = true;
// AIAssist.getInstance( mContext ).speakTTSVoice( "欢迎乘坐’蘑菇车联‘无人驾驶小巴车,请您坐好,注意乘车安全,行程即将开始" );
}
/**