1# TMP108 temperature sensor configuration options
2
3# Copyright (c) 2021 Jimmy Johnson <catch22@fastmail.net>
4# Copyright (c) 2022 T-Mobile USA, Inc.
5# Copyright (c) 2025 Byteflies NV
6# SPDX-License-Identifier: Apache-2.0
7
8menuconfig TMP108
9	bool "TMP108 Temperature Sensor"
10	default y
11	depends on DT_HAS_TI_TMP108_ENABLED || DT_HAS_AMS_AS6212_ENABLED \
12			|| DT_HAS_AMS_AS6221_ENABLED
13	select I2C
14
15	help
16	  Enable driver for the TMP108 temperature sensor and/or it's variants,
17	  the AMS AS621x, AS6221.
18
19if TMP108
20
21config TMP108_ALERT_INTERRUPTS
22	bool "Allow interrupts to service over and under temp alerts"
23	help
24	  This will set up interrupts to service under and over temp alerts
25	  see TMP108 spec sheet for more information on how these work.
26
27endif # TMP108
28