repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/HSPGui/DeviceDescriptions/LIS2DHInfo.cs@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 20:6d2af70c92ab | 1 | /******************************************************************************* |
darienf | 20:6d2af70c92ab | 2 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved. |
darienf | 20:6d2af70c92ab | 3 | * |
darienf | 20:6d2af70c92ab | 4 | * This software is protected by copyright laws of the United States and |
darienf | 20:6d2af70c92ab | 5 | * of foreign countries. This material may also be protected by patent laws |
darienf | 20:6d2af70c92ab | 6 | * and technology transfer regulations of the United States and of foreign |
darienf | 20:6d2af70c92ab | 7 | * countries. This software is furnished under a license agreement and/or a |
darienf | 20:6d2af70c92ab | 8 | * nondisclosure agreement and may only be used or reproduced in accordance |
darienf | 20:6d2af70c92ab | 9 | * with the terms of those agreements. Dissemination of this information to |
darienf | 20:6d2af70c92ab | 10 | * any party or parties not specified in the license agreement and/or |
darienf | 20:6d2af70c92ab | 11 | * nondisclosure agreement is expressly prohibited. |
darienf | 20:6d2af70c92ab | 12 | * |
darienf | 20:6d2af70c92ab | 13 | * The above copyright notice and this permission notice shall be included |
darienf | 20:6d2af70c92ab | 14 | * in all copies or substantial portions of the Software. |
darienf | 20:6d2af70c92ab | 15 | * |
darienf | 20:6d2af70c92ab | 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
darienf | 20:6d2af70c92ab | 17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
darienf | 20:6d2af70c92ab | 18 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
darienf | 20:6d2af70c92ab | 19 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
darienf | 20:6d2af70c92ab | 20 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
darienf | 20:6d2af70c92ab | 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
darienf | 20:6d2af70c92ab | 22 | * OTHER DEALINGS IN THE SOFTWARE. |
darienf | 20:6d2af70c92ab | 23 | * |
darienf | 20:6d2af70c92ab | 24 | * Except as contained in this notice, the name of Maxim Integrated |
darienf | 20:6d2af70c92ab | 25 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
darienf | 20:6d2af70c92ab | 26 | * Products, Inc. Branding Policy. |
darienf | 20:6d2af70c92ab | 27 | * |
darienf | 20:6d2af70c92ab | 28 | * The mere transfer of this software does not imply any licenses |
darienf | 20:6d2af70c92ab | 29 | * of trade secrets, proprietary technology, copyrights, patents, |
darienf | 20:6d2af70c92ab | 30 | * trademarks, maskwork rights, or any other form of intellectual |
darienf | 20:6d2af70c92ab | 31 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
darienf | 20:6d2af70c92ab | 32 | * ownership rights. |
darienf | 20:6d2af70c92ab | 33 | ******************************************************************************* |
darienf | 20:6d2af70c92ab | 34 | */ |
darienf | 20:6d2af70c92ab | 35 | |
darienf | 20:6d2af70c92ab | 36 | using System; |
darienf | 20:6d2af70c92ab | 37 | using System.Collections.Generic; |
darienf | 20:6d2af70c92ab | 38 | using System.Linq; |
darienf | 20:6d2af70c92ab | 39 | using System.Text; |
darienf | 20:6d2af70c92ab | 40 | using HealthSensorPlatform.DeviceDescriptions; |
darienf | 20:6d2af70c92ab | 41 | using RPCSupport.DeviceSupport; |
darienf | 20:6d2af70c92ab | 42 | |
darienf | 20:6d2af70c92ab | 43 | namespace Maxim.CustomControls |
darienf | 20:6d2af70c92ab | 44 | { |
darienf | 20:6d2af70c92ab | 45 | public class LIS2DHInfo : Device |
darienf | 20:6d2af70c92ab | 46 | { |
darienf | 20:6d2af70c92ab | 47 | |
darienf | 20:6d2af70c92ab | 48 | public LIS2DHInfo() |
darienf | 20:6d2af70c92ab | 49 | { |
darienf | 20:6d2af70c92ab | 50 | deviceDetails = new DeviceDetails(); |
darienf | 20:6d2af70c92ab | 51 | deviceDetails.InitI2c(2,0x32); |
darienf | 20:6d2af70c92ab | 52 | |
darienf | 20:6d2af70c92ab | 53 | Info = new RegisterInfo[] { |
darienf | 20:6d2af70c92ab | 54 | new RegisterInfo("STATUS_REG_AUX",0x07), |
darienf | 20:6d2af70c92ab | 55 | new RegisterInfo("OUT_TEMP_L",0x0C), |
darienf | 20:6d2af70c92ab | 56 | new RegisterInfo("OUT_TEMP_H",0x0D), |
darienf | 20:6d2af70c92ab | 57 | new RegisterInfo("INT_COUNTER_REG",0x0E), |
darienf | 20:6d2af70c92ab | 58 | new RegisterInfo("WHO_AM_I",0x0F), |
darienf | 20:6d2af70c92ab | 59 | new RegisterInfo("TEMP_CFG_REG",0x1F), |
darienf | 20:6d2af70c92ab | 60 | new RegisterInfo("CTRL_REG1",0x20), |
darienf | 20:6d2af70c92ab | 61 | new RegisterInfo("CTRL_REG2",0x21), |
darienf | 20:6d2af70c92ab | 62 | new RegisterInfo("CTRL_REG3",0x22), |
darienf | 20:6d2af70c92ab | 63 | new RegisterInfo("CTRL_REG4",0x23), |
darienf | 20:6d2af70c92ab | 64 | new RegisterInfo("CTRL_REG5",0x24), |
darienf | 20:6d2af70c92ab | 65 | new RegisterInfo("CTRL_REG6",0x25), |
darienf | 20:6d2af70c92ab | 66 | new RegisterInfo("REFERENCE",0x26), |
darienf | 20:6d2af70c92ab | 67 | new RegisterInfo("STATUS_REG2",0x27), |
darienf | 20:6d2af70c92ab | 68 | new RegisterInfo("OUT_X_L",0x28), |
darienf | 20:6d2af70c92ab | 69 | new RegisterInfo("OUT_X_H",0x29), |
darienf | 20:6d2af70c92ab | 70 | new RegisterInfo("OUT_Y_L",0x2A), |
darienf | 20:6d2af70c92ab | 71 | new RegisterInfo("OUT_Y_H",0x2B), |
darienf | 20:6d2af70c92ab | 72 | new RegisterInfo("OUT_Z_L",0x2C), |
darienf | 20:6d2af70c92ab | 73 | new RegisterInfo("OUT_Z_H",0x2D), |
darienf | 20:6d2af70c92ab | 74 | new RegisterInfo("FIFO_CTRL_REG",0x2E), |
darienf | 20:6d2af70c92ab | 75 | new RegisterInfo("FIFO_SRC_REG",0x2F), |
darienf | 20:6d2af70c92ab | 76 | new RegisterInfo("INT1_CFG",0x30), |
darienf | 20:6d2af70c92ab | 77 | new RegisterInfo("INT1_SOURCE",0x31), |
darienf | 20:6d2af70c92ab | 78 | new RegisterInfo("INT1_THS",0x32), |
darienf | 20:6d2af70c92ab | 79 | new RegisterInfo("INT1_DURATION",0x33), |
darienf | 20:6d2af70c92ab | 80 | new RegisterInfo("INT2_CFG",0x34), |
darienf | 20:6d2af70c92ab | 81 | new RegisterInfo("INT2_SOURCE",0x35), |
darienf | 20:6d2af70c92ab | 82 | new RegisterInfo("INT2_THS",0x36), |
darienf | 20:6d2af70c92ab | 83 | new RegisterInfo("INT2_DURATION",0x37), |
darienf | 20:6d2af70c92ab | 84 | new RegisterInfo("CLICK_CFG",0x38), |
darienf | 20:6d2af70c92ab | 85 | new RegisterInfo("CLICK_SRC",0x39), |
darienf | 20:6d2af70c92ab | 86 | new RegisterInfo("CLICK_THS",0x3A), |
darienf | 20:6d2af70c92ab | 87 | new RegisterInfo("TIME_LIMIT",0x3B), |
darienf | 20:6d2af70c92ab | 88 | new RegisterInfo("TIME_LATENCY",0x3C), |
darienf | 20:6d2af70c92ab | 89 | new RegisterInfo("TIME_WINDOW",0x3D), |
darienf | 20:6d2af70c92ab | 90 | new RegisterInfo("Act_THS",0x3E), |
darienf | 20:6d2af70c92ab | 91 | new RegisterInfo("Act_DUR",0x3F) |
darienf | 20:6d2af70c92ab | 92 | }; |
darienf | 20:6d2af70c92ab | 93 | |
darienf | 20:6d2af70c92ab | 94 | // register 0x00 |
darienf | 20:6d2af70c92ab | 95 | Descriptions(0x07).Add("Bit 0", "PWR_RDY", "Power Ready Flag"); |
darienf | 20:6d2af70c92ab | 96 | Descriptions(0x07).Add("Bit 4", "PROX_INT", "Proximity Threshold Triggered"); |
darienf | 20:6d2af70c92ab | 97 | // register 0x01 |
darienf | 20:6d2af70c92ab | 98 | Descriptions(0x0C).Add("Bit 1", "DIE_TEMP_RDY", "Internal Temperature Ready Flag"); |
darienf | 20:6d2af70c92ab | 99 | // register 0x02 |
darienf | 20:6d2af70c92ab | 100 | Descriptions(0x0D).Add("Bit 4", "PROX_INT_EN", "Proximity Threshold Enable"); |
darienf | 20:6d2af70c92ab | 101 | } |
darienf | 20:6d2af70c92ab | 102 | } |
darienf | 20:6d2af70c92ab | 103 | } |