2016-10-15 20:19:54 +08:00
|
|
|
# Kconfig - HDC1008 temperature and humidity sensor configuration options
|
2016-02-26 20:40:25 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-02-26 20:40:25 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig HDC1008
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "HDC1008 Temperature and Humidity Sensor"
|
2018-09-17 08:23:36 +08:00
|
|
|
depends on I2C && HAS_DTS_I2C && GPIO
|
2016-02-26 20:40:25 +08:00
|
|
|
help
|
|
|
|
Enable driver for HDC1008 temperature and humidity sensors.
|
|
|
|
|
2018-09-13 06:23:26 +08:00
|
|
|
if HDC1008
|
|
|
|
|
2018-09-30 22:57:08 +08:00
|
|
|
if !HAS_DTS_GPIO
|
2018-07-26 00:31:22 +08:00
|
|
|
|
2016-02-26 20:40:25 +08:00
|
|
|
config HDC1008_GPIO_DEV_NAME
|
2018-08-14 22:19:20 +08:00
|
|
|
string "GPIO device"
|
2016-02-26 20:40:25 +08:00
|
|
|
default "GPIO_0"
|
|
|
|
help
|
|
|
|
The device name of the GPIO device to which the HDC1008 data-ready
|
|
|
|
pin is connected.
|
|
|
|
|
|
|
|
config HDC1008_GPIO_PIN_NUM
|
2018-08-14 22:19:20 +08:00
|
|
|
int "Interrupt GPIO pin number"
|
2016-02-26 20:40:25 +08:00
|
|
|
default 0
|
|
|
|
help
|
|
|
|
The number of the GPIO on which the data-ready signal from the HDC1008
|
|
|
|
chip will be received.
|
2018-07-26 00:31:22 +08:00
|
|
|
|
2018-09-30 22:57:08 +08:00
|
|
|
endif # !HAS_DTS_GPIO
|
2018-09-13 06:23:26 +08:00
|
|
|
|
|
|
|
endif # HDC1008
|