-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathMTCData.java
More file actions
57 lines (55 loc) · 3.04 KB
/
Copy pathMTCData.java
File metadata and controls
57 lines (55 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.microntek;
public class MTCData {
public static final int MAX_BALANCE = 28;
public static final int MAX_EQ = 20;
public static final int af = 22;
public static final int atvmode = 11;
public static final int avinAudioOnly = 26;
public static final int backgroundvideo = 17;
public static final int backscreenMode = 29;
public static final int backviewvol = 8;
public static final int barbacklight = 16;
public static final int bareject = 15;
public static final int barvolume = 14;
public static final int carLogoDisable = 27;
public static final int carrecloc = 12;
public static final int drvingsafe = 2;
public static final int dvrphotodisable = 23;
public static final int gpsbackvolume = 25;
public static final int gpsmix = 5;
public static final int gpsphonevol = 24;
public static final int gpssmonitor = 3;
public static final int gpsswitch = 4;
public static final int gpstime = 13;
public static final int instruction = 10;
public static final int kernelConfig = 28;
public static final int[][] music_stytle_data;
public static final int[][] music_stytle_data9;
public static final int musicautoplay = 6;
public static final int muticamera = 1;
public static final int nozhja = 9;
public static final int otherui = 0;
public static final int screenclock = 18;
public static final int screenshootloc = 21;
public static final int screentimeout = 19;
public static final int time_24 = 7;
public static final int videogesture = 20;
static {
int[][] iArr = new int[musicautoplay][];
iArr[otherui] = new int[]{screenclock, backviewvol, screenclock};
iArr[muticamera] = new int[]{atvmode, screenclock, nozhja};
iArr[drvingsafe] = new int[]{barbacklight, musicautoplay, backgroundvideo};
iArr[gpssmonitor] = new int[]{screenclock, musicautoplay, screenclock};
iArr[gpsswitch] = new int[]{instruction, instruction, instruction};
iArr[gpsmix] = new int[]{backviewvol, barbacklight, backviewvol};
music_stytle_data = iArr;
iArr = new int[musicautoplay][];
iArr[otherui] = new int[]{videogesture, screenclock, barbacklight, nozhja, musicautoplay, nozhja, barbacklight, screenclock, videogesture};
iArr[muticamera] = new int[]{nozhja, atvmode, gpstime, backgroundvideo, videogesture, backgroundvideo, atvmode, nozhja, time_24};
iArr[drvingsafe] = new int[]{videogesture, barbacklight, carrecloc, instruction, musicautoplay, drvingsafe, barvolume, backgroundvideo, videogesture};
iArr[gpssmonitor] = new int[]{videogesture, screenclock, barbacklight, backviewvol, drvingsafe, backviewvol, barbacklight, screenclock, videogesture};
iArr[gpsswitch] = new int[]{instruction, instruction, instruction, instruction, instruction, instruction, instruction, instruction, instruction};
iArr[gpsmix] = new int[]{gpsmix, backviewvol, atvmode, barvolume, backgroundvideo, barvolume, atvmode, backviewvol, gpsmix};
music_stytle_data9 = iArr;
}
}