19 lines
519 B
C#
19 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CordonelPreadjustmentUi.Const
|
|
{
|
|
public static class DataErrorCodes
|
|
{
|
|
public const Int32 NoError = 0;
|
|
public const Int32 Pulsewidth = 0x0F0D;
|
|
public const Int32 Amplitude = 0x0F0E;
|
|
public const Int32 TofOutOfRange = 0x0F0F;
|
|
public const Int32 DeltaTimeOfFlight = 0x0F10;
|
|
public const Int32 TofTimeout = 0x0F11;
|
|
public const Int32 Unknown = 0xFFFF;
|
|
}
|
|
}
|