Time quality indicator code enumeration.
Declaration Syntax
C# | Visual Basic | Visual C++ |
[SerializableAttribute] public enum TimeQualityIndicatorCode
<SerializableAttribute> _ Public Enumeration TimeQualityIndicatorCode
[SerializableAttribute] public enum class TimeQualityIndicatorCode
Members
Member | Description |
---|---|
Failure |
1111 - 0xF: Fault--clock failure, time not reliable.
|
UnlockedWithin10Seconds |
1011 - 0xB: Clock unlocked, time within 10^1 s.
|
UnlockedWithin1Second |
1010 - 0xA: Clock unlocked, time within 10^0 s.
|
UnlockedWithinPoint1Seconds |
1001 - 0x9: Clock unlocked, time within 10^-1 s.
|
UnlockedWithinPoint01Seconds |
1000 - 0x8: Clock unlocked, time within 10^-2 s.
|
UnlockedWithinPoint001Seconds |
0111 - 0x7: Clock unlocked, time within 10^-3 s.
|
UnlockedWithinPoint0001Seconds |
0110 - 0x6: Clock unlocked, time within 10^-4 s.
|
UnlockedWithinPoint00001Seconds |
0101 - 0x5: Clock unlocked, time within 10^-5 s.
|
UnlockedWithinPoint000001Seconds |
0100 - 0x4: Clock unlocked, time within 10^-6 s.
|
UnlockedWithinPoint0000001Seconds |
0011 - 0x3: Clock unlocked, time within 10^-7 s.
|
UnlockedWithinPoint00000001Seconds |
0010 - 0x2: Clock unlocked, time within 10^-8 s.
|
UnlockedWithinPoint000000001Seconds |
0001 - 0x1: Clock unlocked, time within 10^-9 s.
|
Locked |
0000 - 0x0: Normal operation, clock locked.
|