-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathStatusFlagBit.cs
31 lines (27 loc) · 908 Bytes
/
StatusFlagBit.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Amg88xx
{
/// <summary>
/// Defines the status bits of the status register (addr: 0x04).
/// </summary>
internal enum StatusFlagBit : byte
{
/// <summary>
/// Interrupt occured.
/// </summary>
INTF = 1,
/// <summary>
/// Temperature output overflow occured for one or more pixel.
/// </summary>
OVF_IRS = 2,
/// <summary>
/// Thermistor output overflow occured
/// Note: the bit is only menthioned in early versions of the reference specification.
/// It is not clear whether this is a specification error or a change in a newer
/// revision of the sensor.
/// </summary>
OVF_THS = 3
}
}