2014-11-01 09:09:52 +08:00
|
|
|
/*
|
2018-10-14 19:37:18 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2014-11-01 09:09:52 +08:00
|
|
|
*
|
2018-10-14 19:37:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2014-11-01 09:09:52 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2019-02-12 10:15:26 +08:00
|
|
|
* 2019-01-31 flybreak first version
|
2014-11-01 09:09:52 +08:00
|
|
|
*/
|
2019-02-12 16:52:10 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
#ifndef __SENSOR_H__
|
|
|
|
#define __SENSOR_H__
|
2014-11-01 09:09:52 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
#include <rtthread.h>
|
2014-11-01 09:09:52 +08:00
|
|
|
#include <rtdevice.h>
|
|
|
|
|
2019-02-12 14:16:27 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
#ifdef RT_USING_RTC
|
|
|
|
#define rt_sen_get_timestamp() time() /* API for the sensor to get the timestamp */
|
|
|
|
#else
|
|
|
|
#define rt_sen_get_timestamp() rt_tick_get() /* API for the sensor to get the timestamp */
|
2015-01-04 12:24:46 +08:00
|
|
|
#endif
|
2014-12-31 22:33:54 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
#define RT_PIN_NONE 0xFFFF /* RT PIN NONE */
|
|
|
|
#define RT_SEN_FLAG_FIFO 0x200 /* Flag to use when the sensor is open by fifo mode */
|
|
|
|
|
|
|
|
#define RT_SEN_MODULE_MAX (3) /* The maximum number of members of a sensor module */
|
|
|
|
|
|
|
|
/* Sensor types */
|
|
|
|
|
|
|
|
#define RT_SEN_CLASS_NONE (0)
|
|
|
|
#define RT_SEN_CLASS_ACCE (1) /* Accelerometer */
|
|
|
|
#define RT_SEN_CLASS_GYRO (2) /* Gyroscope */
|
|
|
|
#define RT_SEN_CLASS_MAG (3) /* Magnetometer */
|
|
|
|
#define RT_SEN_CLASS_TEMP (4) /* Temperature */
|
|
|
|
#define RT_SEN_CLASS_HUMI (5) /* Relative Humidity */
|
|
|
|
#define RT_SEN_CLASS_BARO (6) /* Barometer */
|
|
|
|
#define RT_SEN_CLASS_LIGHT (7) /* Ambient light */
|
|
|
|
#define RT_SEN_CLASS_PROXIMITY (8) /* Proximity */
|
|
|
|
#define RT_SEN_CLASS_HR (9) /* Heart Rate */
|
|
|
|
#define RT_SEN_CLASS_TVOC (10) /* TVOC Level */
|
|
|
|
#define RT_SEN_CLASS_NOISE (11) /* Noise Loudness */
|
|
|
|
#define RT_SEN_CLASS_STEP (12) /* Step sensor */
|
|
|
|
|
2019-02-12 16:52:10 +08:00
|
|
|
/* Sensor vendor types */
|
2019-02-12 10:15:26 +08:00
|
|
|
|
|
|
|
#define RT_SEN_VENDOR_UNKNOWN (0)
|
|
|
|
#define RT_SEN_VENDOR_STM (1) /* STMicroelectronics */
|
|
|
|
#define RT_SEN_VENDOR_BOSCH (2) /* Bosch */
|
|
|
|
#define RT_SEN_VENDOR_INVENSENSE (3) /* Invensense */
|
|
|
|
#define RT_SEN_VENDOR_SEMTECH (4) /* Semtech */
|
|
|
|
#define RT_SEN_VENDOR_GOERTEK (5) /* Goertek */
|
|
|
|
|
2019-02-12 16:52:10 +08:00
|
|
|
/* Sensor unit types */
|
2019-02-12 10:15:26 +08:00
|
|
|
|
|
|
|
#define RT_SEN_UNIT_NONE (0)
|
|
|
|
#define RT_SEN_UNIT_MG (1) /* Accelerometer unit: mG */
|
|
|
|
#define RT_SEN_UNIT_MDPS (2) /* Gyroscope unit: mdps */
|
|
|
|
#define RT_SEN_UNIT_MGAUSS (3) /* Magnetometer unit: mGauss */
|
|
|
|
#define RT_SEN_UNIT_LUX (4) /* Ambient light unit: lux */
|
|
|
|
#define RT_SEN_UNIT_CM (5) /* Distance unit: cm */
|
|
|
|
#define RT_SEN_UNIT_PA (6) /* Barometer unit: pa */
|
|
|
|
#define RT_SEN_UNIT_PERMILLAGE (7) /* Relative Humidity unit: permillage */
|
|
|
|
#define RT_SEN_UNIT_DCELSIUS (8) /* Temperature unit: dCelsius */
|
|
|
|
#define RT_SEN_UNIT_HZ (9) /* Frequency unit: HZ */
|
|
|
|
#define RT_SEN_UNIT_ONE (10) /* Dimensionless quantity unit: 1 */
|
|
|
|
|
|
|
|
/* Sensor communication interface types */
|
|
|
|
|
|
|
|
#define RT_SEN_INTF_I2C (1 << 0)
|
|
|
|
#define RT_SEN_INTF_SPI (1 << 1)
|
|
|
|
#define RT_SEN_INTF_UART (1 << 2)
|
|
|
|
#define RT_SEN_INTF_ONEWIRE (1 << 3)
|
|
|
|
|
2019-02-12 16:52:10 +08:00
|
|
|
/* Sensor power mode types */
|
2019-02-12 10:15:26 +08:00
|
|
|
|
|
|
|
#define RT_SEN_POWER_NONE (0)
|
|
|
|
#define RT_SEN_POWER_DOWN (1) /* power down mode */
|
|
|
|
#define RT_SEN_POWER_NORMAL (2) /* normal-power mode */
|
|
|
|
#define RT_SEN_POWER_LOW (3) /* low-power mode */
|
|
|
|
#define RT_SEN_POWER_HIGH (4) /* high-power mode */
|
|
|
|
|
|
|
|
/* Sensor work mode types */
|
|
|
|
|
|
|
|
#define RT_SEN_MODE_NONE (0)
|
|
|
|
#define RT_SEN_MODE_POLLING (1) /* One shot only read a data */
|
|
|
|
#define RT_SEN_MODE_INT (2) /* TODO: One shot interrupt only read a data */
|
|
|
|
#define RT_SEN_MODE_FIFO (3) /* TODO: One shot interrupt read all fifo data */
|
|
|
|
|
|
|
|
/* Sensor control cmd types */
|
|
|
|
|
|
|
|
#define RT_SEN_CTRL_GET_ID (0) /* Get device id */
|
|
|
|
#define RT_SEN_CTRL_GET_INFO (1) /* Get sensor info */
|
|
|
|
#define RT_SEN_CTRL_SET_RANGE (2) /* Set the measure range of sensor. unit is info of sensor */
|
|
|
|
#define RT_SEN_CTRL_SET_ODR (3) /* Set output date rate. unit is HZ */
|
|
|
|
#define RT_SEN_CTRL_SET_MODE (4) /* Set sensor's work mode. ex. RT_SEN_MODE_POLLING,RT_SEN_MODE_INT */
|
|
|
|
#define RT_SEN_CTRL_SET_POWER (5) /* Set power mode. args type of sensor power mode. ex. RT_SEN_POWER_DOWN,RT_SEN_POWER_NORMAL */
|
|
|
|
#define RT_SEN_CTRL_SELF_TEST (6) /* Take a self test */
|
|
|
|
|
|
|
|
struct rt_sensor_info
|
2014-11-01 15:52:25 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_uint8_t type; /* The sensor type */
|
|
|
|
rt_uint8_t vendor; /* Vendor of sensors */
|
|
|
|
const char *model; /* model name of sensor */
|
|
|
|
rt_uint8_t unit; /* unit of measurement */
|
|
|
|
rt_uint8_t intf_type; /* Communication interface type */
|
|
|
|
rt_int32_t range_max; /* maximum range of this sensor's value. unit is 'unit' */
|
|
|
|
rt_int32_t range_min; /* minimum range of this sensor's value. unit is 'unit' */
|
|
|
|
rt_uint32_t period_min; /* Minimum measurement period,unit:ms. zero = not a constant rate */
|
|
|
|
rt_uint8_t fifo_max;
|
2014-11-01 09:09:52 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_intf
|
2014-11-01 15:52:25 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
char *dev_name; /* The name of the communication device */
|
|
|
|
rt_uint8_t type; /* Communication interface type */
|
|
|
|
void *user_data; /* Private data for the sensor. ex. i2c addr,spi cs,control I/O */
|
2014-11-01 09:09:52 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_config
|
2014-11-01 09:09:52 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_intf intf; /* sensor interface config */
|
|
|
|
struct rt_device_pin_mode irq_pin; /* Interrupt pin, The purpose of this pin is to notification read data */
|
|
|
|
rt_uint8_t mode; /* sensor work mode */
|
|
|
|
rt_uint8_t power; /* sensor power mode */
|
|
|
|
rt_uint16_t odr; /* sensor out data rate */
|
|
|
|
rt_int32_t range; /* sensor range of measurement */
|
2014-12-31 22:33:54 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_device
|
2014-12-31 22:33:54 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_device parent; /* The standard device */
|
2019-02-12 16:52:10 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_info info; /* The sensor info data */
|
|
|
|
struct rt_sensor_config config; /* The sensor config data */
|
|
|
|
|
|
|
|
void *data_buf; /* The buf of the data received */
|
|
|
|
rt_size_t data_len; /* The size of the data received */
|
2019-02-12 16:52:10 +08:00
|
|
|
|
|
|
|
const struct rt_sensor_ops *ops; /* The sensor ops */
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_module *module; /* The sensor module */
|
2014-12-31 22:33:54 +08:00
|
|
|
};
|
2019-02-12 10:15:26 +08:00
|
|
|
typedef struct rt_sensor_device *rt_sensor_t;
|
2014-12-31 22:33:54 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_module
|
2014-12-31 22:33:54 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_mutex_t lock; /* The module lock */
|
2019-02-12 16:52:10 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_sensor_t sen[RT_SEN_MODULE_MAX]; /* The module contains a list of sensors */
|
|
|
|
rt_uint8_t sen_num; /* Number of sensors contained in the module */
|
2014-12-31 22:33:54 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
/* 3-axis Data Type */
|
|
|
|
struct sensor_3_axis
|
2014-11-01 09:09:52 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_int32_t x;
|
|
|
|
rt_int32_t y;
|
|
|
|
rt_int32_t z;
|
2014-11-01 09:09:52 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_data
|
2014-12-31 22:33:54 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_uint32_t timestamp; /* The timestamp when the data was received */
|
|
|
|
rt_uint8_t type; /* The sensor type of the data */
|
|
|
|
union
|
2015-01-04 12:24:46 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
struct sensor_3_axis acce; /* Accelerometer. unit: mG */
|
|
|
|
struct sensor_3_axis gyro; /* Gyroscope. unit: mdps */
|
|
|
|
struct sensor_3_axis mag; /* Magnetometer. unit: mGauss */
|
|
|
|
rt_int32_t temp; /* Temperature. unit: dCelsius */
|
|
|
|
rt_int32_t humi; /* Relative humidity. unit: permillage */
|
|
|
|
rt_int32_t baro; /* Pressure. unit: pascal (Pa) */
|
|
|
|
rt_int32_t light; /* Light. unit: lux */
|
|
|
|
rt_int32_t proximity; /* Distance. unit: centimeters */
|
|
|
|
rt_int32_t hr; /* Heat rate. unit: HZ */
|
|
|
|
rt_int32_t tvoc; /* TVOC. unit: permillage */
|
|
|
|
rt_int32_t noise; /* Noise Loudness. unit: HZ */
|
|
|
|
rt_uint32_t step; /* Step sensor. unit: 1 */
|
2019-02-12 16:52:10 +08:00
|
|
|
} data;
|
2014-11-01 09:09:52 +08:00
|
|
|
};
|
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
struct rt_sensor_ops
|
2014-11-01 09:09:52 +08:00
|
|
|
{
|
2019-02-12 10:15:26 +08:00
|
|
|
rt_size_t (*fetch_data)(struct rt_sensor_device *sensor, void *buf, rt_size_t len);
|
|
|
|
rt_err_t (*control)(struct rt_sensor_device *sensor, int cmd, void *arg);
|
2014-11-01 09:09:52 +08:00
|
|
|
};
|
2015-01-04 12:24:46 +08:00
|
|
|
|
2019-02-12 10:15:26 +08:00
|
|
|
int rt_hw_sensor_register(rt_sensor_t sensor,
|
2019-02-12 16:52:10 +08:00
|
|
|
const char *name,
|
|
|
|
rt_uint32_t flag,
|
|
|
|
void *data);
|
2019-02-12 14:16:27 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2015-01-04 12:24:46 +08:00
|
|
|
#endif
|
2019-02-12 14:16:27 +08:00
|
|
|
|
|
|
|
#endif /* __SENSOR_H__ */
|