1# Copyright (c) 2024 Arrow Electronics.
2# SPDX-License-Identifier: Apache-2.0
3
4# TMP1075 temperature sensor configuration options
5
6menuconfig TMP1075
7	bool "TMP1075 Temperature Sensor"
8	default y
9	depends on DT_HAS_TI_TMP1075_ENABLED
10	select I2C
11
12	help
13	  Enable the driver for Texas Instruments TMP1075 High-Accuracy Digital
14	  Temperature Sensors.
15
16if TMP1075
17
18config TMP1075_ALERT_INTERRUPTS
19	bool "Allow interrupts to service over and under temp alerts"
20	help
21	  This will set up interrupts to service under and over temp alerts
22	  see TMP1075 spec sheet for more information on how these work.
23
24endif # TMP1075
25