55 lines
1.7 KiB
C
55 lines
1.7 KiB
C
/**
|
|
******************************************************************************
|
|
* @file 53l8a1_conf.h
|
|
* @author IMG SW Application Team
|
|
* @brief This file contains definitions for the ToF components bus interfaces
|
|
* when using the X-NUCLEO-53L8A1 expansion board
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2023 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "stm32wlxx_hal.h"
|
|
#include "stm32wlxx_nucleo_bus.h"
|
|
#include "stm32wlxx_nucleo.h"
|
|
#include "stm32wlxx_nucleo_errno.h"
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef VL53L8A1_CONF_H
|
|
#define VL53L8A1_CONF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
/*
|
|
* the 53L8A1 BSP driver uses this symbol to allocate a structure for each device
|
|
* if you are only using the on-board sensor without break-out boards
|
|
* change its to (1U) in order to save space in RAM memory
|
|
*/
|
|
#define RANGING_SENSOR_INSTANCES_NBR (3) //(3U)
|
|
|
|
#define VL53L8A1_I2C_INIT BSP_I2C2_Init
|
|
#define VL53L8A1_I2C_DEINIT BSP_I2C2_DeInit
|
|
#define VL53L8A1_I2C_WRITEREG BSP_I2C2_WriteReg16
|
|
#define VL53L8A1_I2C_READREG BSP_I2C2_ReadReg16
|
|
#define VL53L8A1_GETTICK BSP_GetTick
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* VL53L8A1_CONF_H*/
|