/** ****************************************************************************** * @file vl53l4cd.h * @author IMG SW Application Team * @brief This file contains all the functions prototypes for the vl53l4cd.c * driver. ****************************************************************************** * @attention * * Copyright (c) 2022 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef VL53L4CD_H #define VL53L4CD_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include #include #include /** @addtogroup BSP * @{ */ /** @addtogroup Components * @{ */ /** @addtogroup VL53L4CD * @{ */ /** @defgroup VL53L4CD_Exported_Constants Exported Constants * @{ */ #define VL53L4CD_ID (0xEBAAU) #define VL53L4CD_ID_REG (0x010FU) #define VL53L4CD_DEVICE_ADDRESS (0x52U) #define VL53L4CD_NB_TARGET_PER_ZONE (1U) #define VL53L4CD_MAX_NB_ZONES (1U) /* vl53l4cd threshold/interrupt criteria */ #define VL53L4CD_IT_DEFAULT (0xFFU) /*!< IT if new measurement is ready (thresholds are not considered) */ #define VL53L4CD_IT_IN_WINDOW (3U) /*!< IT if distance >= LowThreshold AND distance <= HighThreshold */ #define VL53L4CD_IT_OUT_OF_WINDOW (2U) /*!< IT if distance < LowThreshold OR distance > HighThreshold */ #define VL53L4CD_IT_BELOW_LOW (0U) /*!< IT if distance < LowThreshold */ #define VL53L4CD_IT_ABOVE_HIGH (1U) /*!< IT if distance > HighThreshold */ /* vl53l4cd ranging profiles */ #define VL53L4CD_PROFILE_CONTINUOUS (1U) #define VL53L4CD_PROFILE_AUTONOMOUS (2U) /* vl53l4cd ranging modes */ #define VL53L4CD_MODE_BLOCKING_CONTINUOUS (1U) #define VL53L4CD_MODE_BLOCKING_ONESHOT (2U) #define VL53L4CD_MODE_ASYNC_CONTINUOUS (3U) #define VL53L4CD_MODE_ASYNC_ONESHOT (4U) /* vl53l4cd error codes */ #define VL53L4CD_OK (0) #define VL53L4CD_ERROR (-1) #define VL53L4CD_INVALID_PARAM (-2) #define VL53L4CD_TIMEOUT (-3) #define VL53L4CD_NOT_IMPLEMENTED (-4) /** * @} */ /** @defgroup VL53L4CD_Exported_Types Exported Types * @{ */ typedef int32_t (*VL53L4CD_Init_Func)(void); typedef int32_t (*VL53L4CD_DeInit_Func)(void); typedef int32_t (*VL53L4CD_GetTick_Func)(void); typedef int32_t (*VL53L4CD_WriteReg_Func)(uint16_t, uint8_t *, uint16_t); typedef int32_t (*VL53L4CD_ReadReg_Func)(uint16_t, uint8_t *, uint16_t); typedef struct { VL53L4CD_Init_Func Init; VL53L4CD_DeInit_Func DeInit; uint16_t Address; VL53L4CD_WriteReg_Func WriteReg; VL53L4CD_ReadReg_Func ReadReg; VL53L4CD_GetTick_Func GetTick; } VL53L4CD_IO_t; typedef struct { VL53L4CD_IO_t IO; uint8_t IsInitialized; /*!< NotInitialized: 0, Initialized: 1 */ uint8_t IsRanging; /*!< Not Started: 0, Started: 1 */ uint8_t IsBlocking; /*!< Interrupt: 0, Polling: 1 */ uint8_t IsContinuous; /*!< One shot: 0, Continuous: 1 */ uint8_t IsAmbientEnabled; /*!< Enabled: 0, Disabled: 1 */ uint8_t IsSignalEnabled; /*!< Enabled: 0, Disabled: 1 */ uint8_t RangingProfile; } VL53L4CD_Object_t; typedef struct { uint32_t NumberOfTargets; uint32_t Distance[VL53L4CD_NB_TARGET_PER_ZONE]; /*!< millimeters */ uint32_t Status[VL53L4CD_NB_TARGET_PER_ZONE]; /*!< OK: 0, NOK: !0 */ float_t Ambient[VL53L4CD_NB_TARGET_PER_ZONE]; /*!< kcps / spad */ float_t Signal[VL53L4CD_NB_TARGET_PER_ZONE]; /*!< kcps / spad */ } VL53L4CD_ZoneResult_t; typedef struct { uint32_t NumberOfZones; VL53L4CD_ZoneResult_t ZoneResult[VL53L4CD_MAX_NB_ZONES]; } VL53L4CD_Result_t; typedef struct { uint32_t Criteria; /*!< interrupt generation criteria */ uint32_t LowThreshold; /*!< expressed in millimeters */ uint32_t HighThreshold; /*!< expressed in millimeters */ } VL53L4CD_ITConfig_t; typedef struct { uint8_t TopLeftX; /*!< Top Left x coordinate: 0-15 range */ uint8_t TopLeftY; /*!< Top Left y coordinate: 0-15 range */ uint8_t BotRightX; /*!< Bot Right x coordinate: 0-15 range */ uint8_t BotRightY; /*!< Bot Right y coordinate: 0-15 range */ } VL53L4CD_ROIConfig_t; typedef struct { uint8_t RangingProfile; uint32_t TimingBudget; /*!< Expressed in milliseconds */ uint32_t Frequency; /*!< Expressed in Hz */ uint32_t EnableAmbient; /*