forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccelerometerBandwidth.cs
53 lines (45 loc) · 1.25 KB
/
AccelerometerBandwidth.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
52
53
// 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.Imu
{
/// <summary>
/// Bandwidth used for normal measurement of the accelerometer
/// using filter block. This can be further reduced using
/// SampleRateDivider with all modes except 1130Hz.
/// </summary>
public enum AccelerometerBandwidth
{
/// <summary>
/// Bandwidth 1130Hz
/// </summary>
Bandwidth1130Hz = 0,
/// <summary>
/// Bandwidth 460Hz
/// </summary>
Bandwidth0460Hz = 0x08,
/// <summary>
/// Bandwidth 184Hz
/// </summary>
Bandwidth0184Hz = 0x09,
/// <summary>
/// Bandwidth 92Hz
/// </summary>
Bandwidth0092Hz = 0x0A,
/// <summary>
/// Bandwidth 41Hz
/// </summary>
Bandwidth0041Hz = 0x0B,
/// <summary>
/// Bandwidth 20Hz
/// </summary>
Bandwidth0020Hz = 0x0C,
/// <summary>
/// Bandwidth 10Hz
/// </summary>
Bandwidth0010Hz = 0x0E,
/// <summary>
/// Bandwidth 5Hz
/// </summary>
Bandwidth0005Hz = 0x0F,
}
}