32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Constant.DASSpecific
|
|
{
|
|
public class SLICE2
|
|
{
|
|
public const uint MaxAAFilterRateHz = 200000;
|
|
|
|
public const int SLICE1_5_BASETYPE = 2;
|
|
public const int SLICEPRO_DIM_BASETYPE = 3;
|
|
public const int SLICEPRO_TOM_BASETYPE = 5;
|
|
public const byte MIN_PROTOCOL_VER = 128;
|
|
public const int FILE_DATA = 133;
|
|
public const int MULTIPLE_EVENTS = 134;
|
|
public const int STACK_SENSORS = 136;
|
|
public const int STACK_FIRMWARE_UPDATE = 137;
|
|
public const int DIAGNOSTIC_TWO_VOLT_EXCITATION = 138;
|
|
public const int QUERY_ARM_AND_TRIGGER_STATUS_TIME_LEFT_IN_ARM = 139;
|
|
public const byte MIN_PROTOCOL_VER_GEN3 = 140;
|
|
public const int SLICE2_ONE_WIRE_ID = 142;
|
|
public const int EVENT_ARM_ATTEMPTS = 145;
|
|
public const int MEASURE_INTERNAL_OFFSET = 149;
|
|
public const int START_REC_DELAY_IN_SECONDS = 150;
|
|
public const int START_REALTIME_STREAM = 152;
|
|
public const int HALF_BRIDGE_SIG_PLUS_SUPPORT = 154;
|
|
}
|
|
}
|