[2.14.0][adas lib] 修改错别字

This commit is contained in:
xinfengkun
2023-02-20 16:44:28 +08:00
parent 367f5628b1
commit 2b551bcdc3
3 changed files with 5 additions and 5 deletions

View File

@@ -56,13 +56,13 @@ public class AutopilotAbility230 {
if (AutopilotAbilityManager.getInstance().isBus()) {
if (gear == Chassis.GearPosition.GEAR_N || gear == Chassis.GearPosition.GEAR_R) {
isAutopilotAbility = false;
unableAutopilotReason = "位不正常";
unableAutopilotReason = "位不正常";
}
} else {
//东风Taxi和红旗 司机端和乘客端 档位不正常
if (gear == Chassis.GearPosition.GEAR_P || gear == Chassis.GearPosition.GEAR_R) {
isAutopilotAbility = false;
unableAutopilotReason = "位不正常";
unableAutopilotReason = "位不正常";
}
}
}

View File

@@ -131,13 +131,13 @@ public class AutopilotAbility250 {
if (AutopilotAbilityManager.getInstance().isBus()) {
if (gear == Chassis.GearPosition.GEAR_N || gear == Chassis.GearPosition.GEAR_R) {
isAutopilotAbility = false;
unableAutopilotReason = "位不正常";
unableAutopilotReason = "位不正常";
}
} else {
//东风Taxi和红旗 司机端和乘客端 档位不正常
if (gear == Chassis.GearPosition.GEAR_P || gear == Chassis.GearPosition.GEAR_R) {
isAutopilotAbility = false;
unableAutopilotReason = "位不正常";
unableAutopilotReason = "位不正常";
}
}
}

View File

@@ -139,7 +139,7 @@ public class VehicleStateMessage extends MyAbstractMessageHandler {
ChassisStatesOuterClass.GearSystemStates.Builder gearSystemStates = null;
if (vehicleState.hasGear()) {
gearSystemStates = ChassisStatesOuterClass.GearSystemStates.newBuilder();
//挂挡档位数据
//档位数据
gearSystemStates.setGearPosition(vehicleState.getGear());//鹰眼已用
}
if (vehicleState.hasGearSwitchInference()) {