[6.10.2]配合自动驾驶车视频接入行云大模型
This commit is contained in:
@@ -1132,6 +1132,22 @@ object CallerAutoPilotControlManager {
|
||||
fun sendCopyBagAbortCopy(): Boolean{
|
||||
return providerApi?.sendCopyBagAbortCopy()?:false
|
||||
}
|
||||
|
||||
/**
|
||||
* 域控摄像头上传NDE云开关命令
|
||||
* @param enable false: 关闭, true: 打开
|
||||
*/
|
||||
fun sendImgUploadCloudEnable(enable: Boolean): Boolean{
|
||||
return providerApi?.sendImgUploadCloudEnable(enable)?:false
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询域控摄像头上传NDE云开关状态查询
|
||||
*/
|
||||
fun sendImgUploadCloudStatusQuery(): Boolean{
|
||||
return providerApi?.sendImgUploadCloudStatusQuery()?:false
|
||||
}
|
||||
|
||||
/**
|
||||
* 云端配置查询
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.mogo.eagle.core.function.call.devatools
|
||||
|
||||
import com.mogo.eagle.core.function.api.devatools.IImgUploadCloudListener
|
||||
import com.mogo.eagle.core.function.call.base.CallerBase
|
||||
import mogo.telematics.pad.MessagePad
|
||||
|
||||
/**
|
||||
* 域控摄像头上传NDE云开关状态回调管理
|
||||
*/
|
||||
object CallerImgUploadCloudManager: CallerBase<IImgUploadCloudListener>() {
|
||||
|
||||
/**
|
||||
* 查询摄像头上传NDE云状态返回
|
||||
*/
|
||||
fun invokeImgUploadCloudStatusResp(resp: MessagePad.ImgUploadCloudStatusResp){
|
||||
M_LISTENERS.forEach{
|
||||
val listener = it.value
|
||||
listener.onImgUploadCloudStatusResp(resp)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user