[6.4.4] increase the autopilot statistics status notice in msgbox

This commit is contained in:
EmArrow
2024-06-04 18:31:22 +08:00
parent 78ad824b9e
commit b01178831d
8 changed files with 253 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
package com.mogo.eagle.core.data.msgbox
/**
* fsm相关的消息
*/
data class FSMMsg(
val type: Int,
val title: String?,
val content: String?,
val timestamp : Long
)

View File

@@ -2,5 +2,5 @@ package com.mogo.eagle.core.data.msgbox
enum class MsgBoxType {
// 按功能划分为几大类运营、通知、V2X模块、OBU模块、工控机Report、录制、交通、FM、语音、SSM、工控机相关等
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC, FMINFO, VOICE, SSMINFO, AUTOPILOT
OPERATION, NOTICE, V2X, OBU, REPORT, RECORD, TRAFFIC, FMINFO, VOICE, SSMINFO, AUTOPILOT, FSM
}