1# STM32 digital temperature sensor configuration options 2 3# Copyright (c) 2024 Aurelien Jarno 4# SPDX-License-Identifier: Apache-2.0 5 6config STM32_DIGI_TEMP 7 bool "STM32 Digital Temperature Sensor" 8 default y 9 depends on DT_HAS_ST_STM32_DIGI_TEMP_ENABLED 10 depends on SOC_FAMILY_STM32 11 help 12 Enable the driver for STM32 digital temperature sensor. This sensor 13 is different from the STM32 analog temperature sensor, which is read 14 by an ADC. While both drivers have similar code footprint, the analog 15 temperature driver also requires the ADC driver to be enabled. The 16 sensors differ in precision, accuracy and power consumption. Users 17 are encouraged to consult the datasheet to select the sensor that 18 best suits their needs. 19