1# Copyright (c) 2024 Bootlin
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig LSM9DS1
5	bool "LSM9DS1 I2C accelerometer and gyroscope chip"
6	default y
7	depends on DT_HAS_ST_LSM9DS1_ENABLED
8	select I2C
9	select HAS_STMEMSC
10	select USE_STDC_LSM9DS1
11
12if LSM9DS1
13
14config LSM9DS1_ENABLE_TEMP
15	bool "LSM9DS1 Temperature sensor"
16	help
17	  Enable/disable temperature
18
19endif #LSM9DS1
20