[change] 添加启动自动驾驶失败回调,以及启动自动驾驶统计回调,启动自动驾驶统计回调注册形式分发

This commit is contained in:
xinfengkun
2022-11-07 14:56:52 +08:00
parent 7f38537912
commit 773e8e57a6
17 changed files with 455 additions and 31 deletions

View File

@@ -0,0 +1,18 @@
package com.mogo.eagle.core.function.api.autopilot
import com.zhidao.support.adas.high.bean.AutopilotAbility
import mogo_msg.MogoReportMsg
interface IMoGoStartAutopilotFailedListener {
/**
* 启动自动驾驶失败回调
* 根据MAP 系统监控状态返回过滤
* message.getMsg() 获取详细错误说明
* message.getCode() 可用于判断属于什么类型
*
* @param message 数据
*/
fun onStartAutopilotFailed(message: MogoReportMsg.MogoReportMessage?)
}