zephyr/drivers/sensor/Makefile
Laurentiu Palcu 8943f6c5ce sensor: bmi160: add support for triggers
Add support for anymotion and data ready triggers. Also, the user can
choose at configuration time the source of the triggers. For quark, in
particular, since the current driver for ARC does not allow receiving
interrupts from AON GPIO controller, IPM is used: a helper app on x86,
registers a gpio callback and will 'relay' the interrupt, through IPM,
to arc core.

Origin: Original
Change-Id: I170d723425c6280f9aa8c240b66275647723edd9
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
2016-04-21 14:16:14 +00:00

25 lines
1.0 KiB
Makefile

ccflags-y +=-I$(srctree)/drivers
obj-$(CONFIG_SENSOR_DELAYED_WORK) += sensor.o
obj-$(CONFIG_BMA280) += sensor_bma280.o
obj-$(CONFIG_BMA280_TRIGGER) += sensor_bma280_trigger.o
obj-$(CONFIG_BMC150_MAGN) += sensor_bmc150_magn.o
obj-$(CONFIG_BMI160) += sensor_bmi160.o
obj-$(CONFIG_BMI160_TRIGGER) += sensor_bmi160_trigger.o
obj-$(CONFIG_BMP280) += sensor_bmp280.o
obj-$(CONFIG_HDC1008) += sensor_hdc1008.o
obj-$(CONFIG_ISL29035) += sensor_isl29035.o
obj-$(CONFIG_ISL29035_TRIGGER) += sensor_isl29035_trigger.o
obj-$(CONFIG_LIS3DH) += sensor_lis3dh.o
obj-$(CONFIG_LIS3DH_TRIGGER) += sensor_lis3dh_trigger.o
obj-$(CONFIG_LSM9DS0_GYRO) += sensor_lsm9ds0_gyro.o
obj-$(CONFIG_MCP9808) += sensor_mcp9808.o
obj-$(CONFIG_MCP9808_TRIGGER) += sensor_mcp9808_trigger.o
obj-$(CONFIG_SHT3XD) += sensor_sht3xd.o
obj-$(CONFIG_SHT3XD_TRIGGER) += sensor_sht3xd_trigger.o
obj-$(CONFIG_SX9500) += sensor_sx9500.o
obj-$(CONFIG_SX9500_TRIGGER) += sensor_sx9500_trigger.o
obj-$(CONFIG_TMP007) += sensor_tmp007.o
obj-$(CONFIG_TMP007_TRIGGER) += sensor_tmp007_trigger.o