[6.5.1_exam]合并Taxi考试到主分支

This commit is contained in:
xuxinchao
2024-07-30 18:44:38 +08:00
parent 2c8e80eca8
commit cca38246cc
21 changed files with 965 additions and 25 deletions

View File

@@ -0,0 +1,26 @@
package com.mogo.eagle.core.data.takeover
import androidx.annotation.IntDef
const val MANUAL_CONTROL = 0
const val OVER_TAKE = 1
const val LINE_TO_LEFT = 2
const val LINE_TO_RIGHT = 3
const val PULL_OVER = 4
const val EMERGENCY_STOP = 5
const val TAKE_OVER_REQUEST = 6
@IntDef(
MANUAL_CONTROL,
OVER_TAKE,
LINE_TO_LEFT,
LINE_TO_RIGHT,
PULL_OVER,
EMERGENCY_STOP,
TAKE_OVER_REQUEST
)
@Retention(AnnotationRetention.SOURCE)
annotation class TakeOverAnnotation(vararg val type: Int) {
}