31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace DTS.Common.Constant.DASSpecific
|
||
|
|
{
|
||
|
|
public class SLICEDB
|
||
|
|
{
|
||
|
|
public const uint MaxAAFilterRateHz = 200000;
|
||
|
|
|
||
|
|
public const byte MIN_PROTOCOL_VER = 1;
|
||
|
|
|
||
|
|
public const byte MIN_PROTOCOL_ARM = 2;
|
||
|
|
public const byte MIN_PROTOCOL_ENABLEFAULTCHECKING = MIN_PROTOCOL_ARM;
|
||
|
|
|
||
|
|
public const byte MIN_PROTOCOL_DIAGNOSTICS = 3;
|
||
|
|
|
||
|
|
public const byte MIN_PROTOCOL_ONOVERRIDE = 4;
|
||
|
|
public const byte MIN_PROTOCOL_OMAP_GPIO = MIN_PROTOCOL_ONOVERRIDE;
|
||
|
|
public const byte MIN_PROTOCOL_INITHARDWAREINPUTLINES = MIN_PROTOCOL_ONOVERRIDE;
|
||
|
|
//FB 16049 Support ECM Caldate
|
||
|
|
public const byte MIN_PROTOCOL_BASECALDATE = 5;
|
||
|
|
// 10582 Implement auto-discover and monitor DAS status.
|
||
|
|
// firmware B0H3 first supported this according to documentation
|
||
|
|
public const byte MIN_PROTOCOL_QUERYMACTABLE = 9;
|
||
|
|
public const byte MIN_PROTOCOL_TILT = 14;
|
||
|
|
}
|
||
|
|
}
|