[6.8.0]冷启动三期主页状态条

This commit is contained in:
xuxinchao
2024-11-21 15:12:37 +08:00
parent 4f60cfbdfe
commit cb0d4614c5
168 changed files with 918 additions and 1 deletions

View File

@@ -462,4 +462,11 @@ object CallerHmiManager {
hmiProviderApi?.toggleSafeStopCarWarning(show)
}
/**
* 展示冷启动进度条
*/
fun showColdStartProcessView(){
hmiProviderApi?.showColdStartProcessView()
}
}

View File

@@ -114,4 +114,11 @@ object CallerHmiViewControlListenerManager : CallerBase<IViewControlListener>()
listener.updateParallelDriveViewShow(isShow)
}
}
fun invokeColdStartProcessView(){
M_LISTENERS.forEach {
val listener = it.value
listener.showColdStartProcessView()
}
}
}