Alejandro Acuña
2024-08-12 1876e65234c20209001178705cfa50d8f9ded67a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package art.servers.etdserver.protocols.dgt;
 
 
/**
 * DGT Constant Values.
 */
public class EtdDgtConstants
{
    public static int ETD_SENSOR_TYPE_DOUBLE = 0x01;
    public static int ETD_SENSOR_TYPE_SIMPLE = 0x02;
 
    public static int ETD_SENSOR_OK = 0x00;
    public static int ETD_SENSOR_FAILURE = 0x01;
 
    public static int ETD_DUP_NOT_AVAILABLE = 0x00;
    public static int ETD_DUP_AVAILABLE = 0x01;
 
    public static int ETD_LENGHT_CLASSIFICATION = 0x01;
    public static int ETD_SPEED_CLASSIFICATION = 0x02;
    public static int ETD_SPEED_X_LENGTH_CLASSIFICATION = 0x04;
}