-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathAdcPinEnabled.cs
44 lines (33 loc) · 1.06 KB
/
AdcPinEnabled.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
32
33
34
35
36
37
38
39
40
41
42
43
44
// 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.Axp192
{
/// <summary>
/// ADC Pin enabled.
/// </summary>
[Flags]
public enum AdcPinEnabled
{
/// <summary>Battery Voltage.</summary>
BatteryVoltage = 0b1000_0000,
/// <summary>Battery Current.</summary>
BatteryCurrent = 0b0100_0000,
/// <summary>AC in Voltage.</summary>
AcInVoltage = 0b0010_0000,
/// <summary>AC in Current.</summary>
AcInCurrent = 0b0001_0000,
/// <summary>Vbus Voltage.</summary>
VbusVoltage = 0b0000_1000,
/// <summary>Vbus Current.</summary>
VbusCurrent = 0b0000_0100,
/// <summary>APS Voltage.</summary>
ApsVoltage = 0b0000_0010,
/// <summary>TS Pin.</summary>
TsPin = 0b0000_0001,
/// <summary>Not enabled.</summary>
None = 0b0000_0000,
/// <summary>All enabled.</summary>
All = 0xFF,
}
}