This commit is contained in:
wangcongtao
2020-06-24 13:42:41 +08:00
parent 90b39c717a
commit a2a7c69f46
286 changed files with 4761 additions and 0 deletions

View File

@@ -19,6 +19,8 @@ public class CarSeries {
public static final int CAR_SERIES_G80X = 40;
public static final int CAR_SERIES_E84X = 50;
public static final int CAR_SERIES_E84XCD = 51;
public static final int CAR_SERIES_E85X = 50;
public static final int CAR_SERIES_E85XCD = 51;
public static int CAR_SERIES = 0;
@@ -52,6 +54,10 @@ public class CarSeries {
CAR_SERIES = CAR_SERIES_E84X;
} else if ( "E84XCD".equals( device ) ) {
CAR_SERIES = CAR_SERIES_E84XCD;
} else if ( "E851-852".equals( device ) ) {
CAR_SERIES = CAR_SERIES_E85X;
} else if ( "E85XCD".equals( device ) ) {
CAR_SERIES = CAR_SERIES_E85XCD;
} else {
CAR_SERIES = CAR_SERIES_F80X;
}