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# SPDX-License-Identifier: Apache-2.0 6 7menuconfig TMP108 8 bool "TMP108 Temperature Sensor" 9 default y 10 depends on DT_HAS_TI_TMP108_ENABLED || DT_HAS_AMS_AS6212_ENABLED 11 select I2C 12 13 help 14 Enable driver for the TMP108 temperature sensor and/or it's variant 15 the AMS AS621. 16 17if TMP108 18 19config TMP108_ALERT_INTERRUPTS 20 bool "Allow interrupts to service over and under temp alerts" 21 help 22 This will set up interrupts to service under and over temp alerts 23 see TMP108 spec sheet for more information on how these work. 24 25endif # TMP108 26