[684][adas]轨迹下载新增订单号参数
This commit is contained in:
@@ -452,15 +452,27 @@ class MoGoAutopilotControlProvider :
|
||||
)
|
||||
}
|
||||
|
||||
override fun sendTrajectoryDownloadReq(autoPilotLine: AutopilotControlParameters.AutoPilotLine, routeInfo: MessagePad.RouteInfo?) {
|
||||
AdasManager.getInstance().sendTrajectoryDownloadReq(autoPilotLine.toAutoPilotLine(),routeInfo)
|
||||
override fun sendTrajectoryDownloadReq(
|
||||
autoPilotLine: AutopilotControlParameters.AutoPilotLine,
|
||||
routeInfo: MessagePad.RouteInfo?,
|
||||
orderId: String?
|
||||
) {
|
||||
AdasManager.getInstance()
|
||||
.sendTrajectoryDownloadReq(autoPilotLine.toAutoPilotLine(), routeInfo, orderId)
|
||||
}
|
||||
|
||||
override fun sendTrajectoryDownloadReq(autoPilotLine: AutopilotControlParameters.AutoPilotLine, downloadType: Int, routeInfo: MessagePad.RouteInfo?) {
|
||||
override fun sendTrajectoryDownloadReq(
|
||||
autoPilotLine: AutopilotControlParameters.AutoPilotLine,
|
||||
downloadType: Int,
|
||||
routeInfo: MessagePad.RouteInfo?,
|
||||
orderId: String?
|
||||
) {
|
||||
AdasManager.getInstance().sendTrajectoryDownloadReq(
|
||||
autoPilotLine.toAutoPilotLine(),
|
||||
downloadType,
|
||||
routeInfo)
|
||||
routeInfo,
|
||||
orderId
|
||||
)
|
||||
}
|
||||
|
||||
override fun cancelAutoPilot() {
|
||||
|
||||
Reference in New Issue
Block a user