Changes to the library related to interrupt mode.

Dependencies:   ST_INTERFACES X_NUCLEO_COMMON

Dependents:   Display_53L0A1_IntSatelites Display_53L0A1_InterruptMode

Fork of X_NUCLEO_53L0A1 by ST

Committer:
JerrySzczurak
Date:
Wed Jun 14 14:10:45 2017 +0000
Revision:
12:820afb1af4ef
Parent:
0:c523920bcc09
Library change to work in interrupt continuous ranging mode

Who changed what in which revision?

UserRevisionLine numberNew contents of line
johnAlexander 0:c523920bcc09 1 /*******************************************************************************
johnAlexander 0:c523920bcc09 2 Copyright © 2016, STMicroelectronics International N.V.
johnAlexander 0:c523920bcc09 3 All rights reserved.
johnAlexander 0:c523920bcc09 4
johnAlexander 0:c523920bcc09 5 Redistribution and use in source and binary forms, with or without
johnAlexander 0:c523920bcc09 6 modification, are permitted provided that the following conditions are met:
johnAlexander 0:c523920bcc09 7 * Redistributions of source code must retain the above copyright
johnAlexander 0:c523920bcc09 8 notice, this list of conditions and the following disclaimer.
johnAlexander 0:c523920bcc09 9 * Redistributions in binary form must reproduce the above copyright
johnAlexander 0:c523920bcc09 10 notice, this list of conditions and the following disclaimer in the
johnAlexander 0:c523920bcc09 11 documentation and/or other materials provided with the distribution.
johnAlexander 0:c523920bcc09 12 * Neither the name of STMicroelectronics nor the
johnAlexander 0:c523920bcc09 13 names of its contributors may be used to endorse or promote products
johnAlexander 0:c523920bcc09 14 derived from this software without specific prior written permission.
johnAlexander 0:c523920bcc09 15
johnAlexander 0:c523920bcc09 16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
johnAlexander 0:c523920bcc09 17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
johnAlexander 0:c523920bcc09 18 WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
johnAlexander 0:c523920bcc09 19 NON-INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS ARE DISCLAIMED.
johnAlexander 0:c523920bcc09 20 IN NO EVENT SHALL STMICROELECTRONICS INTERNATIONAL N.V. BE LIABLE FOR ANY
johnAlexander 0:c523920bcc09 21 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
johnAlexander 0:c523920bcc09 22 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
johnAlexander 0:c523920bcc09 23 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
johnAlexander 0:c523920bcc09 24 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
johnAlexander 0:c523920bcc09 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
johnAlexander 0:c523920bcc09 26 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
johnAlexander 0:c523920bcc09 27 *******************************************************************************/
johnAlexander 0:c523920bcc09 28
johnAlexander 0:c523920bcc09 29 /**
johnAlexander 0:c523920bcc09 30 * Device specific defines. To be adapted by implementer for the targeted
johnAlexander 0:c523920bcc09 31 * device.
johnAlexander 0:c523920bcc09 32 */
johnAlexander 0:c523920bcc09 33
johnAlexander 0:c523920bcc09 34 #ifndef _VL53L0X_DEVICE_H_
johnAlexander 0:c523920bcc09 35 #define _VL53L0X_DEVICE_H_
johnAlexander 0:c523920bcc09 36
johnAlexander 0:c523920bcc09 37 #include "vl53l0x_types.h"
johnAlexander 0:c523920bcc09 38
johnAlexander 0:c523920bcc09 39
johnAlexander 0:c523920bcc09 40 /** @defgroup VL53L0X_DevSpecDefines_group VL53L0X cut1.1 Device Specific Defines
johnAlexander 0:c523920bcc09 41 * @brief VL53L0X cut1.1 Device Specific Defines
johnAlexander 0:c523920bcc09 42 * @{
johnAlexander 0:c523920bcc09 43 */
johnAlexander 0:c523920bcc09 44
johnAlexander 0:c523920bcc09 45
johnAlexander 0:c523920bcc09 46 /** @defgroup VL53L0X_DeviceError_group Device Error
johnAlexander 0:c523920bcc09 47 * @brief Device Error code
johnAlexander 0:c523920bcc09 48 *
johnAlexander 0:c523920bcc09 49 * This enum is Device specific it should be updated in the implementation
johnAlexander 0:c523920bcc09 50 * Use @a VL53L0X_GetStatusErrorString() to get the string.
johnAlexander 0:c523920bcc09 51 * It is related to Status Register of the Device.
johnAlexander 0:c523920bcc09 52 * @{
johnAlexander 0:c523920bcc09 53 */
johnAlexander 0:c523920bcc09 54 typedef uint8_t VL53L0X_DeviceError;
johnAlexander 0:c523920bcc09 55
johnAlexander 0:c523920bcc09 56 #define VL53L0X_DEVICEERROR_NONE ((VL53L0X_DeviceError) 0)
johnAlexander 0:c523920bcc09 57 /*!< 0 NoError */
johnAlexander 0:c523920bcc09 58 #define VL53L0X_DEVICEERROR_VCSELCONTINUITYTESTFAILURE ((VL53L0X_DeviceError) 1)
johnAlexander 0:c523920bcc09 59 #define VL53L0X_DEVICEERROR_VCSELWATCHDOGTESTFAILURE ((VL53L0X_DeviceError) 2)
johnAlexander 0:c523920bcc09 60 #define VL53L0X_DEVICEERROR_NOVHVVALUEFOUND ((VL53L0X_DeviceError) 3)
johnAlexander 0:c523920bcc09 61 #define VL53L0X_DEVICEERROR_MSRCNOTARGET ((VL53L0X_DeviceError) 4)
johnAlexander 0:c523920bcc09 62 #define VL53L0X_DEVICEERROR_SNRCHECK ((VL53L0X_DeviceError) 5)
johnAlexander 0:c523920bcc09 63 #define VL53L0X_DEVICEERROR_RANGEPHASECHECK ((VL53L0X_DeviceError) 6)
johnAlexander 0:c523920bcc09 64 #define VL53L0X_DEVICEERROR_SIGMATHRESHOLDCHECK ((VL53L0X_DeviceError) 7)
johnAlexander 0:c523920bcc09 65 #define VL53L0X_DEVICEERROR_TCC ((VL53L0X_DeviceError) 8)
johnAlexander 0:c523920bcc09 66 #define VL53L0X_DEVICEERROR_PHASECONSISTENCY ((VL53L0X_DeviceError) 9)
johnAlexander 0:c523920bcc09 67 #define VL53L0X_DEVICEERROR_MINCLIP ((VL53L0X_DeviceError) 10)
johnAlexander 0:c523920bcc09 68 #define VL53L0X_DEVICEERROR_RANGECOMPLETE ((VL53L0X_DeviceError) 11)
johnAlexander 0:c523920bcc09 69 #define VL53L0X_DEVICEERROR_ALGOUNDERFLOW ((VL53L0X_DeviceError) 12)
johnAlexander 0:c523920bcc09 70 #define VL53L0X_DEVICEERROR_ALGOOVERFLOW ((VL53L0X_DeviceError) 13)
johnAlexander 0:c523920bcc09 71 #define VL53L0X_DEVICEERROR_RANGEIGNORETHRESHOLD ((VL53L0X_DeviceError) 14)
johnAlexander 0:c523920bcc09 72
johnAlexander 0:c523920bcc09 73 /** @} end of VL53L0X_DeviceError_group */
johnAlexander 0:c523920bcc09 74
johnAlexander 0:c523920bcc09 75
johnAlexander 0:c523920bcc09 76 /** @defgroup VL53L0X_CheckEnable_group Check Enable list
johnAlexander 0:c523920bcc09 77 * @brief Check Enable code
johnAlexander 0:c523920bcc09 78 *
johnAlexander 0:c523920bcc09 79 * Define used to specify the LimitCheckId.
johnAlexander 0:c523920bcc09 80 * Use @a VL53L0X_GetLimitCheckInfo() to get the string.
johnAlexander 0:c523920bcc09 81 * @{
johnAlexander 0:c523920bcc09 82 */
johnAlexander 0:c523920bcc09 83
johnAlexander 0:c523920bcc09 84 #define VL53L0X_CHECKENABLE_SIGMA_FINAL_RANGE 0
johnAlexander 0:c523920bcc09 85 #define VL53L0X_CHECKENABLE_SIGNAL_RATE_FINAL_RANGE 1
johnAlexander 0:c523920bcc09 86 #define VL53L0X_CHECKENABLE_SIGNAL_REF_CLIP 2
johnAlexander 0:c523920bcc09 87 #define VL53L0X_CHECKENABLE_RANGE_IGNORE_THRESHOLD 3
johnAlexander 0:c523920bcc09 88 #define VL53L0X_CHECKENABLE_SIGNAL_RATE_MSRC 4
johnAlexander 0:c523920bcc09 89 #define VL53L0X_CHECKENABLE_SIGNAL_RATE_PRE_RANGE 5
johnAlexander 0:c523920bcc09 90
johnAlexander 0:c523920bcc09 91 #define VL53L0X_CHECKENABLE_NUMBER_OF_CHECKS 6
johnAlexander 0:c523920bcc09 92
johnAlexander 0:c523920bcc09 93 /** @} end of VL53L0X_CheckEnable_group */
johnAlexander 0:c523920bcc09 94
johnAlexander 0:c523920bcc09 95
johnAlexander 0:c523920bcc09 96 /** @defgroup VL53L0X_GpioFunctionality_group Gpio Functionality
johnAlexander 0:c523920bcc09 97 * @brief Defines the different functionalities for the device GPIO(s)
johnAlexander 0:c523920bcc09 98 * @{
johnAlexander 0:c523920bcc09 99 */
johnAlexander 0:c523920bcc09 100 typedef uint8_t VL53L0X_GpioFunctionality;
johnAlexander 0:c523920bcc09 101
johnAlexander 0:c523920bcc09 102 #define VL53L0X_GPIOFUNCTIONALITY_OFF \
johnAlexander 0:c523920bcc09 103 ((VL53L0X_GpioFunctionality) 0) /*!< NO Interrupt */
johnAlexander 0:c523920bcc09 104 #define VL53L0X_GPIOFUNCTIONALITY_THRESHOLD_CROSSED_LOW \
johnAlexander 0:c523920bcc09 105 ((VL53L0X_GpioFunctionality) 1) /*!< Level Low (value < thresh_low) */
johnAlexander 0:c523920bcc09 106 #define VL53L0X_GPIOFUNCTIONALITY_THRESHOLD_CROSSED_HIGH \
johnAlexander 0:c523920bcc09 107 ((VL53L0X_GpioFunctionality) 2) /*!< Level High (value > thresh_high) */
johnAlexander 0:c523920bcc09 108 #define VL53L0X_GPIOFUNCTIONALITY_THRESHOLD_CROSSED_OUT \
johnAlexander 0:c523920bcc09 109 ((VL53L0X_GpioFunctionality) 3)
johnAlexander 0:c523920bcc09 110 /*!< Out Of Window (value < thresh_low OR value > thresh_high) */
johnAlexander 0:c523920bcc09 111 #define VL53L0X_GPIOFUNCTIONALITY_NEW_MEASURE_READY \
johnAlexander 0:c523920bcc09 112 ((VL53L0X_GpioFunctionality) 4) /*!< New Sample Ready */
johnAlexander 0:c523920bcc09 113
johnAlexander 0:c523920bcc09 114 /** @} end of VL53L0X_GpioFunctionality_group */
johnAlexander 0:c523920bcc09 115
johnAlexander 0:c523920bcc09 116
johnAlexander 0:c523920bcc09 117 /* Device register map */
johnAlexander 0:c523920bcc09 118
johnAlexander 0:c523920bcc09 119 /** @defgroup VL53L0X_DefineRegisters_group Define Registers
johnAlexander 0:c523920bcc09 120 * @brief List of all the defined registers
johnAlexander 0:c523920bcc09 121 * @{
johnAlexander 0:c523920bcc09 122 */
johnAlexander 0:c523920bcc09 123 #define VL53L0X_REG_SYSRANGE_START 0x000
johnAlexander 0:c523920bcc09 124 /** mask existing bit in #VL53L0X_REG_SYSRANGE_START*/
johnAlexander 0:c523920bcc09 125 #define VL53L0X_REG_SYSRANGE_MODE_MASK 0x0F
johnAlexander 0:c523920bcc09 126 /** bit 0 in #VL53L0X_REG_SYSRANGE_START write 1 toggle state in
johnAlexander 0:c523920bcc09 127 * continuous mode and arm next shot in single shot mode */
johnAlexander 0:c523920bcc09 128 #define VL53L0X_REG_SYSRANGE_MODE_START_STOP 0x01
johnAlexander 0:c523920bcc09 129 /** bit 1 write 0 in #VL53L0X_REG_SYSRANGE_START set single shot mode */
johnAlexander 0:c523920bcc09 130 #define VL53L0X_REG_SYSRANGE_MODE_SINGLESHOT 0x00
johnAlexander 0:c523920bcc09 131 /** bit 1 write 1 in #VL53L0X_REG_SYSRANGE_START set back-to-back
johnAlexander 0:c523920bcc09 132 * operation mode */
johnAlexander 0:c523920bcc09 133 #define VL53L0X_REG_SYSRANGE_MODE_BACKTOBACK 0x02
johnAlexander 0:c523920bcc09 134 /** bit 2 write 1 in #VL53L0X_REG_SYSRANGE_START set timed operation
johnAlexander 0:c523920bcc09 135 * mode */
johnAlexander 0:c523920bcc09 136 #define VL53L0X_REG_SYSRANGE_MODE_TIMED 0x04
johnAlexander 0:c523920bcc09 137 /** bit 3 write 1 in #VL53L0X_REG_SYSRANGE_START set histogram operation
johnAlexander 0:c523920bcc09 138 * mode */
johnAlexander 0:c523920bcc09 139 #define VL53L0X_REG_SYSRANGE_MODE_HISTOGRAM 0x08
johnAlexander 0:c523920bcc09 140
johnAlexander 0:c523920bcc09 141
johnAlexander 0:c523920bcc09 142 #define VL53L0X_REG_SYSTEM_THRESH_HIGH 0x000C
johnAlexander 0:c523920bcc09 143 #define VL53L0X_REG_SYSTEM_THRESH_LOW 0x000E
johnAlexander 0:c523920bcc09 144
johnAlexander 0:c523920bcc09 145
johnAlexander 0:c523920bcc09 146 #define VL53L0X_REG_SYSTEM_SEQUENCE_CONFIG 0x0001
johnAlexander 0:c523920bcc09 147 #define VL53L0X_REG_SYSTEM_RANGE_CONFIG 0x0009
johnAlexander 0:c523920bcc09 148 #define VL53L0X_REG_SYSTEM_INTERMEASUREMENT_PERIOD 0x0004
johnAlexander 0:c523920bcc09 149
johnAlexander 0:c523920bcc09 150
johnAlexander 0:c523920bcc09 151 #define VL53L0X_REG_SYSTEM_INTERRUPT_CONFIG_GPIO 0x000A
johnAlexander 0:c523920bcc09 152 #define VL53L0X_REG_SYSTEM_INTERRUPT_GPIO_DISABLED 0x00
johnAlexander 0:c523920bcc09 153 #define VL53L0X_REG_SYSTEM_INTERRUPT_GPIO_LEVEL_LOW 0x01
johnAlexander 0:c523920bcc09 154 #define VL53L0X_REG_SYSTEM_INTERRUPT_GPIO_LEVEL_HIGH 0x02
johnAlexander 0:c523920bcc09 155 #define VL53L0X_REG_SYSTEM_INTERRUPT_GPIO_OUT_OF_WINDOW 0x03
johnAlexander 0:c523920bcc09 156 #define VL53L0X_REG_SYSTEM_INTERRUPT_GPIO_NEW_SAMPLE_READY 0x04
johnAlexander 0:c523920bcc09 157
johnAlexander 0:c523920bcc09 158 #define VL53L0X_REG_GPIO_HV_MUX_ACTIVE_HIGH 0x0084
johnAlexander 0:c523920bcc09 159
johnAlexander 0:c523920bcc09 160
johnAlexander 0:c523920bcc09 161 #define VL53L0X_REG_SYSTEM_INTERRUPT_CLEAR 0x000B
johnAlexander 0:c523920bcc09 162
johnAlexander 0:c523920bcc09 163 /* Result registers */
johnAlexander 0:c523920bcc09 164 #define VL53L0X_REG_RESULT_INTERRUPT_STATUS 0x0013
johnAlexander 0:c523920bcc09 165 #define VL53L0X_REG_RESULT_RANGE_STATUS 0x0014
johnAlexander 0:c523920bcc09 166
johnAlexander 0:c523920bcc09 167 #define VL53L0X_REG_RESULT_CORE_PAGE 1
johnAlexander 0:c523920bcc09 168 #define VL53L0X_REG_RESULT_CORE_AMBIENT_WINDOW_EVENTS_RTN 0x00BC
johnAlexander 0:c523920bcc09 169 #define VL53L0X_REG_RESULT_CORE_RANGING_TOTAL_EVENTS_RTN 0x00C0
johnAlexander 0:c523920bcc09 170 #define VL53L0X_REG_RESULT_CORE_AMBIENT_WINDOW_EVENTS_REF 0x00D0
johnAlexander 0:c523920bcc09 171 #define VL53L0X_REG_RESULT_CORE_RANGING_TOTAL_EVENTS_REF 0x00D4
johnAlexander 0:c523920bcc09 172 #define VL53L0X_REG_RESULT_PEAK_SIGNAL_RATE_REF 0x00B6
johnAlexander 0:c523920bcc09 173
johnAlexander 0:c523920bcc09 174 /* Algo register */
johnAlexander 0:c523920bcc09 175
johnAlexander 0:c523920bcc09 176 #define VL53L0X_REG_ALGO_PART_TO_PART_RANGE_OFFSET_MM 0x0028
johnAlexander 0:c523920bcc09 177
johnAlexander 0:c523920bcc09 178 #define VL53L0X_REG_I2C_SLAVE_DEVICE_ADDRESS 0x008a
johnAlexander 0:c523920bcc09 179
johnAlexander 0:c523920bcc09 180 /* Check Limit registers */
johnAlexander 0:c523920bcc09 181 #define VL53L0X_REG_MSRC_CONFIG_CONTROL 0x0060
johnAlexander 0:c523920bcc09 182
johnAlexander 0:c523920bcc09 183 #define VL53L0X_REG_PRE_RANGE_CONFIG_MIN_SNR 0X0027
johnAlexander 0:c523920bcc09 184 #define VL53L0X_REG_PRE_RANGE_CONFIG_VALID_PHASE_LOW 0x0056
johnAlexander 0:c523920bcc09 185 #define VL53L0X_REG_PRE_RANGE_CONFIG_VALID_PHASE_HIGH 0x0057
johnAlexander 0:c523920bcc09 186 #define VL53L0X_REG_PRE_RANGE_MIN_COUNT_RATE_RTN_LIMIT 0x0064
johnAlexander 0:c523920bcc09 187
johnAlexander 0:c523920bcc09 188 #define VL53L0X_REG_FINAL_RANGE_CONFIG_MIN_SNR 0X0067
johnAlexander 0:c523920bcc09 189 #define VL53L0X_REG_FINAL_RANGE_CONFIG_VALID_PHASE_LOW 0x0047
johnAlexander 0:c523920bcc09 190 #define VL53L0X_REG_FINAL_RANGE_CONFIG_VALID_PHASE_HIGH 0x0048
johnAlexander 0:c523920bcc09 191 #define VL53L0X_REG_FINAL_RANGE_CONFIG_MIN_COUNT_RATE_RTN_LIMIT 0x0044
johnAlexander 0:c523920bcc09 192
johnAlexander 0:c523920bcc09 193
johnAlexander 0:c523920bcc09 194 #define VL53L0X_REG_PRE_RANGE_CONFIG_SIGMA_THRESH_HI 0X0061
johnAlexander 0:c523920bcc09 195 #define VL53L0X_REG_PRE_RANGE_CONFIG_SIGMA_THRESH_LO 0X0062
johnAlexander 0:c523920bcc09 196
johnAlexander 0:c523920bcc09 197 /* PRE RANGE registers */
johnAlexander 0:c523920bcc09 198 #define VL53L0X_REG_PRE_RANGE_CONFIG_VCSEL_PERIOD 0x0050
johnAlexander 0:c523920bcc09 199 #define VL53L0X_REG_PRE_RANGE_CONFIG_TIMEOUT_MACROP_HI 0x0051
johnAlexander 0:c523920bcc09 200 #define VL53L0X_REG_PRE_RANGE_CONFIG_TIMEOUT_MACROP_LO 0x0052
johnAlexander 0:c523920bcc09 201
johnAlexander 0:c523920bcc09 202 #define VL53L0X_REG_SYSTEM_HISTOGRAM_BIN 0x0081
johnAlexander 0:c523920bcc09 203 #define VL53L0X_REG_HISTOGRAM_CONFIG_INITIAL_PHASE_SELECT 0x0033
johnAlexander 0:c523920bcc09 204 #define VL53L0X_REG_HISTOGRAM_CONFIG_READOUT_CTRL 0x0055
johnAlexander 0:c523920bcc09 205
johnAlexander 0:c523920bcc09 206 #define VL53L0X_REG_FINAL_RANGE_CONFIG_VCSEL_PERIOD 0x0070
johnAlexander 0:c523920bcc09 207 #define VL53L0X_REG_FINAL_RANGE_CONFIG_TIMEOUT_MACROP_HI 0x0071
johnAlexander 0:c523920bcc09 208 #define VL53L0X_REG_FINAL_RANGE_CONFIG_TIMEOUT_MACROP_LO 0x0072
johnAlexander 0:c523920bcc09 209 #define VL53L0X_REG_CROSSTALK_COMPENSATION_PEAK_RATE_MCPS 0x0020
johnAlexander 0:c523920bcc09 210
johnAlexander 0:c523920bcc09 211 #define VL53L0X_REG_MSRC_CONFIG_TIMEOUT_MACROP 0x0046
johnAlexander 0:c523920bcc09 212
johnAlexander 0:c523920bcc09 213
johnAlexander 0:c523920bcc09 214 #define VL53L0X_REG_SOFT_RESET_GO2_SOFT_RESET_N 0x00bf
johnAlexander 0:c523920bcc09 215 #define VL53L0X_REG_IDENTIFICATION_MODEL_ID 0x00c0
johnAlexander 0:c523920bcc09 216 #define VL53L0X_REG_IDENTIFICATION_REVISION_ID 0x00c2
johnAlexander 0:c523920bcc09 217
johnAlexander 0:c523920bcc09 218 #define VL53L0X_REG_OSC_CALIBRATE_VAL 0x00f8
johnAlexander 0:c523920bcc09 219
johnAlexander 0:c523920bcc09 220
johnAlexander 0:c523920bcc09 221 #define VL53L0X_SIGMA_ESTIMATE_MAX_VALUE 65535
johnAlexander 0:c523920bcc09 222 /* equivalent to a range sigma of 655.35mm */
johnAlexander 0:c523920bcc09 223
johnAlexander 0:c523920bcc09 224 #define VL53L0X_REG_GLOBAL_CONFIG_VCSEL_WIDTH 0x032
johnAlexander 0:c523920bcc09 225 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_0 0x0B0
johnAlexander 0:c523920bcc09 226 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_1 0x0B1
johnAlexander 0:c523920bcc09 227 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_2 0x0B2
johnAlexander 0:c523920bcc09 228 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_3 0x0B3
johnAlexander 0:c523920bcc09 229 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_4 0x0B4
johnAlexander 0:c523920bcc09 230 #define VL53L0X_REG_GLOBAL_CONFIG_SPAD_ENABLES_REF_5 0x0B5
johnAlexander 0:c523920bcc09 231
johnAlexander 0:c523920bcc09 232 #define VL53L0X_REG_GLOBAL_CONFIG_REF_EN_START_SELECT 0xB6
johnAlexander 0:c523920bcc09 233 #define VL53L0X_REG_DYNAMIC_SPAD_NUM_REQUESTED_REF_SPAD 0x4E /* 0x14E */
johnAlexander 0:c523920bcc09 234 #define VL53L0X_REG_DYNAMIC_SPAD_REF_EN_START_OFFSET 0x4F /* 0x14F */
johnAlexander 0:c523920bcc09 235 #define VL53L0X_REG_POWER_MANAGEMENT_GO1_POWER_FORCE 0x80
johnAlexander 0:c523920bcc09 236
johnAlexander 0:c523920bcc09 237 /*
johnAlexander 0:c523920bcc09 238 * Speed of light in um per 1E-10 Seconds
johnAlexander 0:c523920bcc09 239 */
johnAlexander 0:c523920bcc09 240
johnAlexander 0:c523920bcc09 241 #define VL53L0X_SPEED_OF_LIGHT_IN_AIR 2997
johnAlexander 0:c523920bcc09 242
johnAlexander 0:c523920bcc09 243 #define VL53L0X_REG_VHV_CONFIG_PAD_SCL_SDA__EXTSUP_HV 0x0089
johnAlexander 0:c523920bcc09 244
johnAlexander 0:c523920bcc09 245 #define VL53L0X_REG_ALGO_PHASECAL_LIM 0x0030 /* 0x130 */
johnAlexander 0:c523920bcc09 246 #define VL53L0X_REG_ALGO_PHASECAL_CONFIG_TIMEOUT 0x0030
johnAlexander 0:c523920bcc09 247
johnAlexander 0:c523920bcc09 248 /** @} VL53L0X_DefineRegisters_group */
johnAlexander 0:c523920bcc09 249
johnAlexander 0:c523920bcc09 250 /** @} VL53L0X_DevSpecDefines_group */
johnAlexander 0:c523920bcc09 251
johnAlexander 0:c523920bcc09 252
johnAlexander 0:c523920bcc09 253 #endif
johnAlexander 0:c523920bcc09 254
johnAlexander 0:c523920bcc09 255 /* _VL53L0X_DEVICE_H_ */
johnAlexander 0:c523920bcc09 256
johnAlexander 0:c523920bcc09 257