1# TMP11X temperature sensor configuration options
2
3# Copyright (c) 2019 Centaur Analytics, Inc
4# SPDX-License-Identifier: Apache-2.0
5
6config TMP11X
7	bool "TMP116, TMP117 and TMP119 Temperature Sensors"
8	default y
9	depends on DT_HAS_TI_TMP11X_ENABLED
10	select I2C
11	help
12	  Enable driver for TMP116, TMP117 and TMP119 temperature sensors.
13
14if TMP11X
15
16module = TMP11X
17thread_priority = 10
18thread_stack_size = 1024
19source "drivers/sensor/Kconfig.trigger_template"
20
21endif
22