[8.2.8][需求] AIP开关修改为随时开关,引导线更改为aip开启时使用不同的颜色

This commit is contained in:
xinfengkun
2025-12-03 14:02:21 +08:00
parent aa5fdae1ac
commit fcdeb250b5
11 changed files with 120 additions and 53 deletions

View File

@@ -13,13 +13,13 @@ object CallerPlanningTrajectoryListenerManager : CallerBase<IMoGoPlanningTraject
/**
* 车前引导线 回调
* @param trajectoryInfo 自动驾驶状态信息
* @param trajectory
*/
@Synchronized
fun invokeAutopilotTrajectory(trajectoryInfo: MutableList<MessagePad.TrajectoryPoint>) {
fun invokeAutopilotTrajectory(trajectory: MessagePad.Trajectory) {
M_LISTENERS.forEach {
val listener = it.value
listener.onAutopilotTrajectory(trajectoryInfo)
listener.onAutopilotTrajectory(trajectory)
}
}