add system operation view

This commit is contained in:
zhongchao
2022-01-11 19:41:59 +08:00
parent 552e0a5ee5
commit 0926a8b399
13 changed files with 353 additions and 155 deletions

View File

@@ -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
)
/**
@@ -74,4 +74,12 @@ object CallerAutoPilotManager {
fun setAutoPilotSpeed(speed: Int): Boolean {
return providerApi.setAutoPilotSpeed(speed)
}
fun setIPCShutDown() {
providerApi.setIPCShutDown()
}
fun setIPCReboot() {
providerApi.setIPCReboot()
}
}