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>
19 lines
696 B
Makefile
19 lines
696 B
Makefile
# Makefile - FXOS8700 6-axis accelerometer/magnetometer
|
|
#
|
|
# Copyright (c) 2016, Freescale Semiconductor, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
obj-$(CONFIG_FXOS8700) += fxos8700.o
|