mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 17:33:00 +00:00
Adds basic sensor driver support for the NXP FXOS8700 6-axis accelerometer/magnetometer. Currently this driver supports accelerometer-only, magnetometer-only, and hybrid (accelerometer + magnetometer) modes, as well as 2g, 4g, and 8g accelerometer full scale ranges. This driver does not yet support any sensor triggers such as the data ready trigger, or runtime changing of sensor attributes. Datasheet: http://cache.nxp.com/files/sensors/doc/data_sheet/FXOS8700CQ.pdf Origin: Original Jira: ZEP-721 Change-Id: Iff0f751c737196f60d5c5d3448631b57093ece34 Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
30 lines
948 B
Makefile
30 lines
948 B
Makefile
ccflags-y +=-I$(srctree)/drivers
|
|
|
|
obj-$(CONFIG_AK8975) += ak8975/
|
|
obj-$(CONFIG_BMA280) += bma280/
|
|
obj-$(CONFIG_BMC150_MAGN) += bmc150_magn/
|
|
obj-$(CONFIG_BME280) += bme280/
|
|
obj-$(CONFIG_BMG160) += bmg160/
|
|
obj-$(CONFIG_BMI160) += bmi160/
|
|
obj-$(CONFIG_DHT) += dht/
|
|
obj-$(CONFIG_FXOS8700) += fxos8700/
|
|
obj-$(CONFIG_HDC1008) += hdc1008/
|
|
obj-$(CONFIG_HMC5883L) += hmc5883l/
|
|
obj-$(CONFIG_HP206C) += hp206c/
|
|
obj-$(CONFIG_HTS221) += hts221/
|
|
obj-$(CONFIG_ISL29035) += isl29035/
|
|
obj-$(CONFIG_LIS3DH) += lis3dh/
|
|
obj-$(CONFIG_LIS3MDL) += lis3mdl/
|
|
obj-$(CONFIG_LPS25HB) += lps25hb/
|
|
obj-$(CONFIG_LSM6DS0) += lsm6ds0/
|
|
obj-$(CONFIG_LSM9DS0_GYRO) += lsm9ds0_gyro/
|
|
obj-$(CONFIG_LSM9DS0_MFD) += lsm9ds0_mfd/
|
|
obj-$(CONFIG_MAX44009) += max44009/
|
|
obj-$(CONFIG_MCP9808) += mcp9808/
|
|
obj-$(CONFIG_MPU6050) += mpu6050/
|
|
obj-$(CONFIG_SHT3XD) += sht3xd/
|
|
obj-$(CONFIG_SX9500) += sx9500/
|
|
obj-$(CONFIG_TH02) += th02/
|
|
obj-$(CONFIG_TMP007) += tmp007/
|
|
obj-$(CONFIG_TMP112) += tmp112/
|