mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 22:31:55 +00:00
Adds sensor driver support for the NXP FXAS21002 3-axis gyroscope. Includes statically configurable range and output data rate, as well as the sensor data ready trigger. Datasheet: http://www.nxp.com/assets/documents/data/en/data-sheets/FXAS21002.pdf Jira: ZEP-1392 Change-Id: I84587c4d5e76863245e9d045c6abb10b21b2615a Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
ccflags-y +=-I$(srctree)/drivers
|
|
|
|
obj-$(CONFIG_ADXL362) += adxl362/
|
|
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_FXAS21002) += fxas21002/
|
|
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_TEMP_NRF5) += nrf5/
|
|
obj-$(CONFIG_SHT3XD) += sht3xd/
|
|
obj-$(CONFIG_SX9500) += sx9500/
|
|
obj-$(CONFIG_TH02) += th02/
|
|
obj-$(CONFIG_TMP007) += tmp007/
|
|
obj-$(CONFIG_TMP112) += tmp112/
|