增加badcase获取数据采集录制模式配置列表获取接口
This commit is contained in:
xuxinchao
2022-07-07 18:09:39 +08:00
parent 4413b20a1c
commit e8b3c75ba0
3 changed files with 19 additions and 0 deletions

View File

@@ -405,6 +405,13 @@ class MoGoAutopilotProvider :
}
}
/**
* 获取数据采集录制模式配置列表
*/
override fun getBadCaseConfig() {
AdasManager.getInstance().sendRecordDataConfigReq()
}
/**
* 发送工控机所有节点重启命令
*/

View File

@@ -134,6 +134,11 @@ interface IMoGoAutopilotProvider : IMoGoFunctionServerProvider {
*/
fun setRainMode(isEnable: Boolean)
/**
* 获取数据采集录制模式配置列表
*/
fun getBadCaseConfig()
/**
* 发送工控机所有节点重启命令
*/

View File

@@ -174,6 +174,13 @@ object CallerAutoPilotManager {
providerApi?.setRainMode(isEnable)
}
/**
* 获取数据采集录制模式配置列表
*/
fun getBadCaseConfig(){
providerApi?.getBadCaseConfig()
}
/**
* 发送工控机所有节点重启命令
*/