dev分支去掉obu的依赖,代码保留,以待后用

This commit is contained in:
tongchenfei
2020-06-24 18:57:07 +08:00
parent 9083a3301e
commit 014af4adb5
5 changed files with 59 additions and 33 deletions

View File

@@ -5,5 +5,29 @@ package com.zhidao.mogo.module.obu;
*
* @author tongchenfei
*/
class ObuConstant {
public class ObuConstant {
/**
* 前碰撞预警,暂时不知道是干啥的
*/
public static final int TYPE_FRONT_COLLISION_WARNING = 101;
/**
* 交叉路口碰撞预警
*/
public static final int TYPE_CROSS_COLLISION_WARNING = 102;
/**
* 紧急制动预警
*/
public static final int TYPE_URGENCY_COLLISION_WARNING = 105;
/**
* 绿波车速引导
*/
public static final int TYPE_OPTIMAL_SPEED_ADVISORY = 109;
/**
* 行人碰撞预警
*/
public static final int TYPE_ROAD_USER_COLLISION_WARNING = 115;
}