2016-05-24 17:09:22 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-05-24 17:09:22 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig HTS221
|
|
|
|
bool
|
2016-06-01 21:59:14 +08:00
|
|
|
prompt "HTS221 temperature and humidity sensor"
|
2017-09-22 02:28:16 +08:00
|
|
|
depends on I2C
|
2016-05-24 17:09:22 +08:00
|
|
|
help
|
2016-06-01 21:59:14 +08:00
|
|
|
Enable driver for HTS221 I2C-based temperature and humidity sensor.
|
2016-05-24 17:09:22 +08:00
|
|
|
|
2018-01-27 02:15:43 +08:00
|
|
|
if !HAS_DTS_I2C_DEVICE
|
|
|
|
|
2016-05-24 17:09:22 +08:00
|
|
|
config HTS221_NAME
|
|
|
|
string
|
|
|
|
prompt "Driver name"
|
|
|
|
default "HTS221"
|
2018-01-27 02:15:43 +08:00
|
|
|
depends on HTS221
|
2016-05-24 17:09:22 +08:00
|
|
|
help
|
|
|
|
Device name with which the HTS221 sensor is identified.
|
|
|
|
|
|
|
|
config HTS221_I2C_MASTER_DEV_NAME
|
|
|
|
string
|
|
|
|
prompt "I2C master where HTS221 is connected"
|
2018-01-27 02:15:43 +08:00
|
|
|
depends on HTS221
|
2016-05-24 17:09:22 +08:00
|
|
|
default "I2C_0"
|
|
|
|
help
|
|
|
|
Specify the device name of the I2C master device to which HTS221 is
|
|
|
|
connected.
|
|
|
|
|
2018-01-27 02:15:43 +08:00
|
|
|
endif
|
|
|
|
|
2018-01-11 21:36:05 +08:00
|
|
|
choice
|
2016-05-24 17:09:22 +08:00
|
|
|
prompt "Trigger mode"
|
|
|
|
depends on HTS221
|
2018-01-11 21:36:05 +08:00
|
|
|
default HTS221_TRIGGER_GLOBAL_THREAD
|
2016-05-24 17:09:22 +08:00
|
|
|
help
|
|
|
|
Specify the type of triggering to be used by the driver.
|
|
|
|
|
|
|
|
config HTS221_TRIGGER_NONE
|
|
|
|
bool
|
|
|
|
prompt "No trigger"
|
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
config HTS221_TRIGGER_GLOBAL_THREAD
|
2016-05-24 17:09:22 +08:00
|
|
|
bool
|
2016-11-10 23:05:53 +08:00
|
|
|
prompt "Use global thread"
|
2016-11-05 03:47:32 +08:00
|
|
|
depends on GPIO
|
2016-05-24 17:09:22 +08:00
|
|
|
select HTS221_TRIGGER
|
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
config HTS221_TRIGGER_OWN_THREAD
|
2016-05-24 17:09:22 +08:00
|
|
|
bool
|
2016-11-10 23:05:53 +08:00
|
|
|
prompt "Use own thread"
|
2016-05-24 17:09:22 +08:00
|
|
|
depends on GPIO
|
|
|
|
select HTS221_TRIGGER
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config HTS221_TRIGGER
|
|
|
|
bool
|
|
|
|
depends on HTS221
|
|
|
|
|
|
|
|
config HTS221_GPIO_DEV_NAME
|
|
|
|
string
|
|
|
|
prompt "GPIO device"
|
|
|
|
default "GPIO_0"
|
|
|
|
depends on HTS221 && HTS221_TRIGGER
|
|
|
|
help
|
|
|
|
The device name of the GPIO device to which the HTS221 interrupt pin
|
|
|
|
is connected.
|
|
|
|
|
|
|
|
config HTS221_GPIO_PIN_NUM
|
|
|
|
int
|
|
|
|
prompt "Interrupt GPIO pin number"
|
|
|
|
default 0
|
|
|
|
depends on HTS221 && HTS221_TRIGGER
|
|
|
|
help
|
|
|
|
The number of the GPIO on which the interrupt signal from the HTS221
|
|
|
|
chip will be received.
|
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
config HTS221_THREAD_PRIORITY
|
2016-05-24 17:09:22 +08:00
|
|
|
int
|
2016-11-10 23:05:53 +08:00
|
|
|
prompt "Thread priority"
|
|
|
|
depends on HTS221 && HTS221_TRIGGER_OWN_THREAD
|
2016-05-24 17:09:22 +08:00
|
|
|
default 10
|
|
|
|
help
|
2016-11-10 23:05:53 +08:00
|
|
|
Priority of thread used by the driver to handle interrupts.
|
2016-05-24 17:09:22 +08:00
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
config HTS221_THREAD_STACK_SIZE
|
2016-05-24 17:09:22 +08:00
|
|
|
int
|
2016-11-10 23:05:53 +08:00
|
|
|
prompt "Thread stack size"
|
|
|
|
depends on HTS221 && HTS221_TRIGGER_OWN_THREAD
|
2016-05-24 17:09:22 +08:00
|
|
|
default 1024
|
|
|
|
help
|
2016-11-10 23:05:53 +08:00
|
|
|
Stack size of thread used by the driver to handle interrupts.
|
2016-05-24 17:09:22 +08:00
|
|
|
|
|
|
|
config HTS221_ODR
|
|
|
|
string
|
|
|
|
prompt "Output data rate"
|
|
|
|
depends on HTS221
|
|
|
|
default "1"
|
|
|
|
help
|
|
|
|
Sensor output data rate expressed in samples per second.
|
|
|
|
Data rates supported by the chip are 1, 7 and 12.5.
|