179 lines
5.7 KiB
C
179 lines
5.7 KiB
C
/**
|
|
*
|
|
* Copyright (c) 2021 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef _PLATFORM_H_
|
|
#define _PLATFORM_H_
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
typedef int32_t (*VL53L7CX_get_tick_Func)(void);
|
|
typedef int32_t (*VL53L7CX_write_Func)(uint16_t, uint16_t, uint8_t *, uint16_t);
|
|
typedef int32_t (*VL53L7CX_read_Func)(uint16_t, uint16_t, uint8_t *, uint16_t);
|
|
|
|
/**
|
|
* @brief Structure VL53L7CX_Platform needs to be filled by the customer,
|
|
* depending on his platform. At least, it contains the VL53L7CX I2C address.
|
|
* Some additional fields can be added, as descriptors, or platform
|
|
* dependencies. Anything added into this structure is visible into the platform
|
|
* layer.
|
|
*/
|
|
|
|
typedef struct
|
|
{
|
|
/* To be filled with customer's platform. At least an I2C address/descriptor
|
|
* needs to be added */
|
|
/* Example for most standard platform : I2C address of sensor */
|
|
uint16_t address;
|
|
VL53L7CX_write_Func Write;
|
|
VL53L7CX_read_Func Read;
|
|
VL53L7CX_get_tick_Func GetTick;
|
|
} VL53L7CX_Platform;
|
|
|
|
/*
|
|
* @brief The macro below is used to define the number of target per zone sent
|
|
* through I2C. This value can be changed by user, in order to tune I2C
|
|
* transaction, and also the total memory size (a lower number of target per
|
|
* zone means a lower RAM usage).
|
|
*/
|
|
#ifndef VL53L7CX_NB_TARGET_PER_ZONE
|
|
#define VL53L7CX_NB_TARGET_PER_ZONE (1U)
|
|
#endif
|
|
/*
|
|
* @brief The macro below can be used to avoid data conversion into the driver.
|
|
* By default there is a conversion between firmware and user data. Using this macro
|
|
* allows to use the firmware format instead of user format. The firmware format allows
|
|
* an increased precision.
|
|
*/
|
|
|
|
// #define VL53L7CX_USE_RAW_FORMAT
|
|
|
|
/*
|
|
* @brief All macro below are used to configure the sensor output. User can
|
|
* define some macros if he wants to disable selected output, in order to reduce
|
|
* I2C access.
|
|
*/
|
|
|
|
// #define VL53L7CX_DISABLE_AMBIENT_PER_SPAD
|
|
// #define VL53L7CX_DISABLE_NB_SPADS_ENABLED
|
|
// #define VL53L7CX_DISABLE_NB_TARGET_DETECTED
|
|
// #define VL53L7CX_DISABLE_SIGNAL_PER_SPAD
|
|
// #define VL53L7CX_DISABLE_RANGE_SIGMA_MM
|
|
// #define VL53L7CX_DISABLE_DISTANCE_MM
|
|
// #define VL53L7CX_DISABLE_REFLECTANCE_PERCENT
|
|
// #define VL53L7CX_DISABLE_TARGET_STATUS
|
|
// #define VL53L7CX_DISABLE_MOTION_INDICATOR
|
|
|
|
/*
|
|
* @brief The macro below can be changed to switch between little and big
|
|
* endian. By default, VL53L7CX ULD works with little endian, but user can
|
|
* choose big endian. Just use selected the wanted configuration using macro
|
|
* PROCESSOR_LITTLE_ENDIAN.
|
|
*/
|
|
|
|
#define PROCESSOR_LITTLE_ENDIAN
|
|
#ifdef PROCESSOR_LITTLE_ENDIAN
|
|
#define SWAP_UINT16(x) (x)
|
|
#define SWAP_UINT32(x) (x)
|
|
#else
|
|
#define SWAP_UINT16(x) (((x) >> 8) | ((x) << 8))
|
|
#define SWAP_UINT32(x) (((x) >> 24) | (((x) & 0x00FF0000) >> 8) \
|
|
| (((x) & 0x0000FF00) << 8) | ((x) << 24))
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @param (VL53L7CX_Platform*) p_platform : Pointer of VL53L7CX platform
|
|
* structure.
|
|
* @param (uint16_t) Address : I2C location of value to read.
|
|
* @param (uint8_t) *p_values : Pointer of value to read.
|
|
* @return (uint8_t) status : 0 if OK
|
|
*/
|
|
|
|
uint8_t VL53L7CX_RdByte(
|
|
VL53L7CX_Platform *p_platform,
|
|
uint16_t RegisterAdress,
|
|
uint8_t *p_value);
|
|
|
|
/**
|
|
* @brief Mandatory function used to write one single byte.
|
|
* @param (VL53L7CX_Platform*) p_platform : Pointer of VL53L7CX platform
|
|
* structure.
|
|
* @param (uint16_t) Address : I2C location of value to read.
|
|
* @param (uint8_t) value : Pointer of value to write.
|
|
* @return (uint8_t) status : 0 if OK
|
|
*/
|
|
|
|
uint8_t VL53L7CX_WrByte(
|
|
VL53L7CX_Platform *p_platform,
|
|
uint16_t RegisterAdress,
|
|
uint8_t value);
|
|
|
|
/**
|
|
* @brief Mandatory function used to read multiples bytes.
|
|
* @param (VL53L7CX_Platform*) p_platform : Pointer of VL53L7CX platform
|
|
* structure.
|
|
* @param (uint16_t) Address : I2C location of values to read.
|
|
* @param (uint8_t) *p_values : Buffer of bytes to read.
|
|
* @param (uint32_t) size : Size of *p_values buffer.
|
|
* @return (uint8_t) status : 0 if OK
|
|
*/
|
|
|
|
uint8_t VL53L7CX_RdMulti(
|
|
VL53L7CX_Platform *p_platform,
|
|
uint16_t RegisterAdress,
|
|
uint8_t *p_values,
|
|
uint32_t size);
|
|
|
|
/**
|
|
* @brief Mandatory function used to write multiples bytes.
|
|
* @param (VL53L7CX_Platform*) p_platform : Pointer of VL53L7CX platform
|
|
* structure.
|
|
* @param (uint16_t) Address : I2C location of values to write.
|
|
* @param (uint8_t) *p_values : Buffer of bytes to write.
|
|
* @param (uint32_t) size : Size of *p_values buffer.
|
|
* @return (uint8_t) status : 0 if OK
|
|
*/
|
|
|
|
uint8_t VL53L7CX_WrMulti(
|
|
VL53L7CX_Platform *p_platform,
|
|
uint16_t RegisterAdress,
|
|
uint8_t *p_values,
|
|
uint32_t size);
|
|
|
|
/**
|
|
* @brief Mandatory function, used to swap a buffer. The buffer size is always a
|
|
* multiple of 4 (4, 8, 12, 16, ...).
|
|
* @param (uint8_t*) buffer : Buffer to swap, generally uint32_t
|
|
* @param (uint16_t) size : Buffer size to swap
|
|
*/
|
|
|
|
void VL53L7CX_SwapBuffer(
|
|
uint8_t *buffer,
|
|
uint16_t size);
|
|
|
|
/**
|
|
* @brief Mandatory function, used to wait during an amount of time. It must be
|
|
* filled as it's used into the API.
|
|
* @param (VL53L7CX_Platform*) p_platform : Pointer of VL53L7CX platform
|
|
* structure.
|
|
* @param (uint32_t) TimeMs : Time to wait in ms.
|
|
* @return (uint8_t) status : 0 if wait is finished.
|
|
*/
|
|
|
|
uint8_t VL53L7CX_WaitMs(
|
|
VL53L7CX_Platform *p_platform,
|
|
uint32_t TimeMs);
|
|
|
|
#endif // _PLATFORM_H_
|