mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
77c4ad2d6a
BMI160 is an Inertial Measurement Unit (IMU) which provides acceleration and angular rate measurement. It also offers a secondary I2C interface for connecting a magnetometer sensor (usually BMM160). Current driver offers support for accelerometer and gyroscope readings via sysfs or via buffer interface using an external trigger (e.g. hrtimer). Data is retrieved from IMU via I2C or SPI interface. Datasheet is at: http://www.mouser.com/ds/2/783/BST-BMI160-DS000-07-786474.pdf Signed-off-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
20 lines
532 B
Makefile
20 lines
532 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
|