forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStandbyTime.cs
51 lines (43 loc) · 1.1 KB
/
StandbyTime.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
45
46
47
48
49
50
51
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Bmxx80
{
/// <summary>
/// Controls the inactive duration in normal mode.
/// </summary>
public enum StandbyTime : byte
{
/// <summary>
/// Standby time 0.5 ms.
/// </summary>
Ms0_5 = 0b000,
/// <summary>
/// Standby time 62.5 ms.
/// </summary>
Ms62_5 = 0b001,
/// <summary>
/// Standby time 125 ms.
/// </summary>
Ms125 = 0b010,
/// <summary>
/// Standby time 250 ms.
/// </summary>
Ms250 = 0b011,
/// <summary>
/// Standby time 500 ms.
/// </summary>
Ms500 = 0b100,
/// <summary>
/// Standby time 1000 ms.
/// </summary>
Ms1000 = 0b101,
/// <summary>
/// Standby time 10 ms.
/// </summary>
Ms10 = 0b110,
/// <summary>
/// Standby time 20 ms.
/// </summary>
Ms20 = 0b111,
}
}