1# TMP112 temperature sensor configuration options
2
3# Copyright (c) 2016 Firmwave
4# SPDX-License-Identifier: Apache-2.0
5
6config TMP112
7	bool "TMP112 Temperature Sensor"
8	default y
9	depends on DT_HAS_TI_TMP112_ENABLED
10	select I2C
11	help
12	  Enable the driver for Texas Instruments TMP112 High-Accuracy Digital
13	  Temperature Sensors.
14
15	  The TMP102 is compatible with the TMP112 but is less accurate and has
16	  been successfully tested with this driver.
17
18config TMP112_FULL_SCALE_RUNTIME
19	bool "Allow to set extended mode at runtime"
20	default y
21	help
22	  When set extended mode can be selected using tmp112_attr_set
23	  with SENSOR_ATTR_FULL_SCALE and value to set either 128 or 150
24
25config TMP112_SAMPLING_FREQUENCY_RUNTIME
26	bool "Allow to set conversion rate at runtime"
27	default y
28	help
29	  When set conversion rate can be set at runtime using sensor_attr_set
30	  with SENSOR_ATTR_SAMPLING_FREQUENCY
31