mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
290a6ce11d
Add support to STM LSM6DS3-LSM6DSM 6-axis (acc + gyro) Mems sensor http://www.st.com/resource/en/datasheet/lsm6ds3.pdf http://www.st.com/resource/en/datasheet/lsm6dsm.pdf - continuous mode support - i2c support - spi support - sw fifo mode support - supported devices: lsm6ds3, lsm6dsm Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
22 lines
554 B
Makefile
22 lines
554 B
Makefile
#
|
|
# Makefile for Inertial Measurement Units
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
adis16400-y := adis16400_core.o
|
|
adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o
|
|
obj-$(CONFIG_ADIS16400) += adis16400.o
|
|
obj-$(CONFIG_ADIS16480) += adis16480.o
|
|
|
|
adis_lib-y += adis.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_trigger.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_buffer.o
|
|
obj-$(CONFIG_IIO_ADIS_LIB) += adis_lib.o
|
|
|
|
obj-y += bmi160/
|
|
obj-y += inv_mpu6050/
|
|
|
|
obj-$(CONFIG_KMX61) += kmx61.o
|
|
|
|
obj-y += st_lsm6dsx/
|