[Change]
增加对工控机美化模式的调用 Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
@@ -15,8 +15,8 @@ object CallerAutoPilotManager {
|
||||
|
||||
private val providerApi: IMoGoAutopilotProvider?
|
||||
get() = CallerBase.getApiInstance(
|
||||
IMoGoAutopilotProvider::class.java,
|
||||
MogoServicePaths.PATH_AUTO_PILOT
|
||||
IMoGoAutopilotProvider::class.java,
|
||||
MogoServicePaths.PATH_AUTO_PILOT
|
||||
)
|
||||
|
||||
/**
|
||||
@@ -90,15 +90,23 @@ object CallerAutoPilotManager {
|
||||
/**
|
||||
* 设置工控机升级确认
|
||||
*/
|
||||
fun setIPCUpgradeAffirm(){
|
||||
fun setIPCUpgradeAffirm() {
|
||||
providerApi?.setIPCUpgradeAffirm()
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置工控机升级取消
|
||||
*/
|
||||
fun setIPCUpgradeCancel(){
|
||||
fun setIPCUpgradeCancel() {
|
||||
providerApi?.setIPCUpgradeCancel()
|
||||
}
|
||||
|
||||
/**
|
||||
* 演示模式(美化模式)
|
||||
* isEnable = true 开启
|
||||
* isEnable = false 关闭
|
||||
*/
|
||||
fun setDemoMode(isEnable: Boolean) {
|
||||
providerApi?.setDemoMode(isEnable)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user