[状态栏]状态栏需求代码提交

[状态栏]网络可访问状态获取
This commit is contained in:
renwj
2022-05-26 20:38:51 +08:00
parent 8c23dbe411
commit 9150b3f40a
57 changed files with 1422 additions and 25 deletions

View File

@@ -35,6 +35,11 @@ interface IMoGoAutopilotStatusListener {
*/
fun onAutopilotGuardian(guardianInfo: MogoReportMsg.MogoReportMessage?) {}
/**
* 工控机底盘没有返回数据
*/
fun onAutopilotNotData(timestamp: Long) {}
companion object {
/**

View File

@@ -30,4 +30,9 @@ interface IMoGoAutopilotVehicleStateListener {
* @param gear 档位
*/
fun onAutopilotGearData(gear: Chassis.GearPosition)
/**
* 底盘没有返回数据
*/
fun onAutopilotNotData(timestamp: Long)
}

View File

@@ -99,4 +99,9 @@ interface IDevaToolsProvider : IProvider {
* 下载指定包
*/
fun downLoadPackage(downloadKey: String, downloadUrl: String)
/**
* 展示状态栏
*/
fun showStatusBar(ctx: Context)
}