mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
0115a63c99
Add driver support for HDC2010/2080 series devices and sysfs documentation for their heater element. HDC2010 is an integrated high-accuracy humidity and temperature sensor with very low power consumption. The device includes a resistive heating element. The temperature range is -40C to 125C with 0.2C accuracy. Humidity measurement is 0 to 100% with 2% RH accuracy. Signed-off-by: Eugene Zaikonnikov <ez@norphonic.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
23 lines
597 B
Makefile
23 lines
597 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for IIO humidity sensor drivers
|
|
#
|
|
|
|
obj-$(CONFIG_AM2315) += am2315.o
|
|
obj-$(CONFIG_DHT11) += dht11.o
|
|
obj-$(CONFIG_HDC100X) += hdc100x.o
|
|
obj-$(CONFIG_HDC2010) += hdc2010.o
|
|
obj-$(CONFIG_HID_SENSOR_HUMIDITY) += hid-sensor-humidity.o
|
|
|
|
hts221-y := hts221_core.o \
|
|
hts221_buffer.o
|
|
obj-$(CONFIG_HTS221) += hts221.o
|
|
obj-$(CONFIG_HTS221_I2C) += hts221_i2c.o
|
|
obj-$(CONFIG_HTS221_SPI) += hts221_spi.o
|
|
|
|
obj-$(CONFIG_HTU21) += htu21.o
|
|
obj-$(CONFIG_SI7005) += si7005.o
|
|
obj-$(CONFIG_SI7020) += si7020.o
|
|
|
|
ccflags-y += -I$(srctree)/drivers/iio/common/hid-sensors
|