Files
DP44/Common/DTS.Common/.svn/pristine/c5/c5fb0d6e95dfc024594368c9d6045b53dc4f2cd6.svn-base
2026-04-17 14:55:32 -04:00

25 lines
810 B
Plaintext

using DTS.Common.Enums;
namespace DTS.Common.Constant.DASSpecific
{
#pragma warning disable S101 // Types should be named in PascalCase
public static class SLICE6AIRTC
#pragma warning restore S101 // Types should be named in PascalCase
{
public const int MIN_PROTOCOL_VER = 1;
public const int ADC_SAMPLES_PER_PACKET_VER = 1;
public const int ThermocouplersPerModule = 8;
public static bool IsStreamingProfileSupported(UDPStreamProfile profile, int protocolVersion)
{
switch (profile)
{
case UDPStreamProfile.CH10_ANALOG_2HDR:
case UDPStreamProfile.CH10_PCM_STANDARD_2HDR:
return true;
default: return false;
}
}
}
}