96 lines
1.8 KiB
C
96 lines
1.8 KiB
C
/**
|
|
******************************************************************************
|
|
* @file env_sensor.h
|
|
* @author MCD Application Team
|
|
* @brief This header file contains the functions prototypes for the
|
|
* environmental sensor driver
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2017 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 ENV_SENSOR_H
|
|
#define ENV_SENSOR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include <stdint.h>
|
|
|
|
/** @addtogroup BSP BSP
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup COMPONENTS COMPONENTS
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup COMMON COMMON
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup ENV_SENSOR ENV SENSOR
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup ENV_SENSOR_Public_Types ENV SENSOR Public types
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief ENV SENSOR driver structure definition
|
|
*/
|
|
typedef struct
|
|
{
|
|
int32_t (*Init)(void *);
|
|
int32_t (*DeInit)(void *);
|
|
int32_t (*ReadID)(void *, uint8_t *);
|
|
int32_t (*GetCapabilities)(void *, void *);
|
|
} ENV_SENSOR_CommonDrv_t;
|
|
|
|
typedef struct
|
|
{
|
|
int32_t (*Enable)(void *);
|
|
int32_t (*Disable)(void *);
|
|
int32_t (*GetOutputDataRate)(void *, float *);
|
|
int32_t (*SetOutputDataRate)(void *, float);
|
|
int32_t (*GetValue)(void *, float *);
|
|
} ENV_SENSOR_FuncDrv_t;
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ENV_SENSOR_H */
|