75 lines
2.9 KiB
Plaintext
75 lines
2.9 KiB
Plaintext
|
|
|
|||
|
|
namespace DTS.Storage
|
|||
|
|
{
|
|||
|
|
public class DAS
|
|||
|
|
{
|
|||
|
|
public const string Table = "tblDAS";
|
|||
|
|
public enum Fields
|
|||
|
|
{
|
|||
|
|
SerialNumber,
|
|||
|
|
Type,
|
|||
|
|
MaxModules,
|
|||
|
|
MaxMemory,
|
|||
|
|
MaxSampleRate,
|
|||
|
|
MinSampleRate,
|
|||
|
|
FirmwareVersion,
|
|||
|
|
CalDate,
|
|||
|
|
ProtocolVersion,
|
|||
|
|
LastModified,
|
|||
|
|
LastModifiedBy,
|
|||
|
|
Version,
|
|||
|
|
LocalOnly,
|
|||
|
|
LastUsed,
|
|||
|
|
LastUsedBy,
|
|||
|
|
Connection,
|
|||
|
|
Channels,
|
|||
|
|
Position,
|
|||
|
|
ChannelTypes,
|
|||
|
|
Reprogramable,
|
|||
|
|
Reconfigurable,
|
|||
|
|
IsModule
|
|||
|
|
}
|
|||
|
|
public const string TableDASChannels = "tblDASChannels";
|
|||
|
|
public enum DASChannelFields
|
|||
|
|
{
|
|||
|
|
HardwareId,
|
|||
|
|
ChannelIdx,
|
|||
|
|
SupportedBridges,
|
|||
|
|
SupportedExcitations,
|
|||
|
|
DASDisplayOrder,
|
|||
|
|
LocalOnly,
|
|||
|
|
SupportedDigitalInputModes,
|
|||
|
|
SupportedSquibFireModes,
|
|||
|
|
SupportedDigitalOutputModes,
|
|||
|
|
ModuleSerialNumber,
|
|||
|
|
ModuleArrayIndex
|
|||
|
|
}
|
|||
|
|
public const string SLICE1_PROTOTYPE = "SLICE1 Prototype";
|
|||
|
|
public const string SLICEPRO_PROTOTYPE = "SLICEPRO Prototype";
|
|||
|
|
public const string PROTOTYPE_POSITION = "Prototype";
|
|||
|
|
public const string SLICE1_5PROTOTYPE = "SLICE+ Prototype";
|
|||
|
|
public const string G5_VDSPROTOTYPE = "G5 VDS Prototype";
|
|||
|
|
public const string G5_IPORTPROTOTYPE = "G5 iPort Prototype";
|
|||
|
|
public const string TDASPRO_8MRack = "TDASPro Rack 8M Prototype";
|
|||
|
|
public const string TDASPRO_4MRack = "TDASPRO Rack 4M Prototype";
|
|||
|
|
public const string ECM_PROTOTYPE = "SLICE ECM Prototype";
|
|||
|
|
public const string SLE_PROTOTYPE = "SLICE PRO Lab Ethernet Prototype";
|
|||
|
|
public const string SDB_PROTOTYPE = "SLICE Distributor Prototype";
|
|||
|
|
public const string Slice_NanoPROTOTYPE = "SLICE Nano Prototype";
|
|||
|
|
public const string Slice_MicroPROTOTYPE = "SLICE Micro Prototype";
|
|||
|
|
public const string SLICEPRODIM_PROTOTYPE = "SLICE Pro DIM";
|
|||
|
|
public const string SLICEPROSLD_PROTOTYPE = "SLICE PRO Lab DIM";
|
|||
|
|
public const string SLICEPROTOM_PROTOTYPE = "SLICE Pro TOM";
|
|||
|
|
public const string SLICEPROSLT_PROTOTYPE = "SLICE PRO Lab TOM";
|
|||
|
|
public const string SLICEPROSIM_PROTOTYPE = "SLICE Pro SIM";
|
|||
|
|
public const string SLICEPROSLS_PROTOTYPE = "SLICE PRO Lab SIM";
|
|||
|
|
public const string SLICE1_5_MicroPROTOTYPE = "SLICE MICRO BASE+ Prototype";
|
|||
|
|
public const string G5_INDUMMYPROTOTYPE = "G5 InDummy Prototype";
|
|||
|
|
public const string SG5_PROTOTYPE = "SLICE G5 Prototype";
|
|||
|
|
public const string TDASPRO_LabRack = "TDAS PRO Lab Rack";
|
|||
|
|
public const string SLICE6_PROTOTYPE = "SLICE6 Prototype";
|
|||
|
|
public const string SLICE6DB_PROTOTYPE = "SLICE6Db Prototype";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|