40cb761306
Add support for Freescale MMA9553L Intelligent Pedometer Platform. The following functionalities are supported: - step counter (counts the number of steps using a HW register) - step detector (generates an iio event at every step the user takes) - activity recognition (rest, walking, jogging, running) - speed - calories - distance To get accurate pedometer results, the user's height, weight and gender need to be configured. The specifications can be downloaded from: http://www.freescale.com/files/sensors/doc/ref_manual/MMA955xLSWRM.pdf http://www.freescale.com/files/sensors/doc/ref_manual/MMA9553LSWRM.pdf Signed-off-by: Irina Tirdea <irina.tirdea@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
24 lines
781 B
Makefile
24 lines
781 B
Makefile
#
|
|
# Makefile for industrial I/O accelerometer drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_BMA180) += bma180.o
|
|
obj-$(CONFIG_BMC150_ACCEL) += bmc150-accel.o
|
|
obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o
|
|
obj-$(CONFIG_KXCJK1013) += kxcjk-1013.o
|
|
obj-$(CONFIG_KXSD9) += kxsd9.o
|
|
obj-$(CONFIG_MMA8452) += mma8452.o
|
|
|
|
obj-$(CONFIG_MMA9551_CORE) += mma9551_core.o
|
|
obj-$(CONFIG_MMA9551) += mma9551.o
|
|
obj-$(CONFIG_MMA9553) += mma9553.o
|
|
|
|
obj-$(CONFIG_IIO_SSP_SENSORS_COMMONS) += ssp_accel_sensor.o
|
|
|
|
obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o
|
|
st_accel-y := st_accel_core.o
|
|
st_accel-$(CONFIG_IIO_BUFFER) += st_accel_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_ST_ACCEL_I2C_3AXIS) += st_accel_i2c.o
|
|
obj-$(CONFIG_IIO_ST_ACCEL_SPI_3AXIS) += st_accel_spi.o
|