-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
FifoMode.cs
46 lines (39 loc) · 973 Bytes
/
FifoMode.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
// 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.Lps22Hb
{
/// <summary>
/// FIFO mode selection.
/// </summary>
public enum FifoMode : byte
{
/// <summary>
/// Bypass mode.
/// </summary>
Bypass = 0,
/// <summary>
/// FIFO mode.
/// </summary>
Fifo = 1,
/// <summary>
/// Stream mode.
/// </summary>
Stream = 2,
/// <summary>
/// Stream-to-FIFO mode.
/// </summary>
StreamToFifo = 3,
/// <summary>
/// Bypass-to-Stream mode.
/// </summary>
BypassToStream = 4,
/// <summary>
/// Dynamic-Stream mode.
/// </summary>
DynamicStream = 6,
/// <summary>
/// Bypass-to-FIFO mode.
/// </summary>
BypassToFifo = 7
}
}