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;
|
}
|