1# ST Microelectronics STTS22H temperature sensor
2
3# Copyright (c) 2024 STMicroelectronics
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig STTS22H
7	bool "STTS22H temperature sensor"
8	default y
9	depends on DT_HAS_ST_STTS22H_ENABLED
10	depends on ZEPHYR_HAL_ST_MODULE
11	select I2C
12	select HAS_STMEMSC
13	select USE_STDC_STTS22H
14	help
15	  Enable driver for STTS22H I2C-based temperature sensor.
16
17if STTS22H
18
19module = STTS22H
20thread_priority = 10
21thread_stack_size = 1024
22source "drivers/sensor/Kconfig.trigger_template"
23
24endif # STTS22H
25