forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Register.cs
30 lines (24 loc) · 794 Bytes
/
Register.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
// 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.Adxl357
{
internal enum Register : byte
{
DEV_MEMS_REG_ADDR = 0x01,
DEV_ID_REG_ADDR = 0x02,
DEV_VERSION_ID_REG_ADDR = 0x03,
STATUS_REG_ADDR = 0x04,
FIFO_ENTRY_REG_ADDR = 0x06,
ACTION_ENABLE_REG_ADDR = 0x24,
SET_THRESHOLD_REG_ADDR = 0x25,
GET_ACTIVE_COUNT_REG_ADDR = 0x26,
SET_INT_PIN_MAP_REG_ADDR = 0x2a,
X_DATA_REG_ADDR = 0x08,
FIFO_DATA_REG_ADDR = 0x11,
POWER_CTR_REG_ADDR = 0x2d,
TEMPERATURE_REG_ADDR = 0x06,
FILTER_REG_ADDR = 0x28,
SET_RANGE_REG_ADDR = 0x2c,
RESET_REG_ADDR = 0x2f,
}
}