32 lines
593 B
C
32 lines
593 B
C
|
/*
|
||
|
* Copyright (c) 2016 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef ZEPHYR_DRIVERS_SENSOR_TI_HDC_TI_HDC_H_
|
||
|
#define ZEPHYR_DRIVERS_SENSOR_TI_HDC_TI_HDC_H_
|
||
|
|
||
|
#include <kernel.h>
|
||
|
|
||
|
#define TI_HDC_I2C_ADDRESS 0x40
|
||
|
|
||
|
#define TI_HDC_REG_TEMP 0x0
|
||
|
#define TI_HDC_REG_HUMIDITY 0x1
|
||
|
#define TI_HDC_REG_MANUFID 0xFE
|
||
|
#define TI_HDC_REG_DEVICEID 0xFF
|
||
|
|
||
|
#define TI_HDC_MANUFID 0x5449
|
||
|
#define TI_HDC_DEVICEID 0x1000
|
||
|
|
||
|
struct ti_hdc_data {
|
||
|
struct device *i2c;
|
||
|
struct device *gpio;
|
||
|
struct gpio_callback gpio_cb;
|
||
|
u16_t t_sample;
|
||
|
u16_t rh_sample;
|
||
|
struct k_sem data_sem;
|
||
|
};
|
||
|
|
||
|
#endif
|