zephyr/drivers/sensor/tmp007/Kconfig
Kumar Gala f0441fba58 drivers: sensor: Update drivers to use devicetree Kconfig symbol
Update sensor drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol
to expose the driver and enable it by default based on devicetree.

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-07-22 02:20:18 -05:00

55 lines
1.1 KiB
Plaintext

# TMP007 infrared thermopile sensor configuration options
# Copyright (c) 2016 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig TMP007
bool "TMP007 Infrared Thermopile Sensor"
default y
depends on DT_HAS_TI_TMP007_ENABLED
depends on I2C
help
Enable driver for TMP007 infrared thermopile sensors.
if TMP007
choice
prompt "Trigger mode"
default TMP007_TRIGGER_NONE
help
Specify the type of triggering to be used by the driver.
config TMP007_TRIGGER_NONE
bool "No trigger"
config TMP007_TRIGGER_GLOBAL_THREAD
bool "Use global thread"
depends on GPIO
select TMP007_TRIGGER
config TMP007_TRIGGER_OWN_THREAD
bool "Use own thread"
depends on GPIO
select TMP007_TRIGGER
endchoice
config TMP007_TRIGGER
bool
config TMP007_THREAD_PRIORITY
int "Thread priority"
depends on TMP007_TRIGGER_OWN_THREAD
default 10
help
Priority of thread used by the driver to handle interrupts.
config TMP007_THREAD_STACK_SIZE
int "Thread stack size"
depends on TMP007_TRIGGER_OWN_THREAD
default 1024
help
Stack size of thread used by the driver to handle interrupts.
endif # TMP007