2011-04-03 16:26:05 +02:00
|
|
|
############################################################################
|
2011-04-19 20:51:02 +02:00
|
|
|
# drivers/sensors/Make.defs
|
2011-04-03 16:26:05 +02:00
|
|
|
#
|
2015-02-12 19:21:05 +01:00
|
|
|
# Copyright (C) 2011-2012, 2015 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-04-03 16:26:05 +02:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2011-05-16 17:09:39 +02:00
|
|
|
# Include sensor drivers
|
2014-12-16 15:16:53 +01:00
|
|
|
|
2014-12-16 16:54:32 +01:00
|
|
|
ifeq ($(CONFIG_SENSORS),y)
|
|
|
|
|
2014-12-16 15:16:53 +01:00
|
|
|
ifeq ($(CONFIG_SENSORS_ADXL345),y)
|
|
|
|
CSRCS += adxl345_base.c
|
|
|
|
endif
|
|
|
|
|
2011-04-19 20:51:02 +02:00
|
|
|
# These drivers depend on I2C support
|
2011-04-03 16:26:05 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_I2C),y)
|
2012-08-17 16:07:48 +02:00
|
|
|
|
2015-08-07 16:24:29 +02:00
|
|
|
ifeq ($(CONFIG_AS5048B),y)
|
|
|
|
CSRCS += as5048b.c
|
|
|
|
endif
|
|
|
|
|
2014-05-08 15:39:10 +02:00
|
|
|
ifeq ($(CONFIG_LIS331DL),y)
|
2011-05-16 17:09:39 +02:00
|
|
|
CSRCS += lis331dl.c
|
2012-08-17 16:07:48 +02:00
|
|
|
endif
|
2011-09-10 18:20:09 +02:00
|
|
|
|
2014-12-16 15:16:53 +01:00
|
|
|
ifeq ($(CONFIG_ADXL345_I2C),y)
|
|
|
|
CSRCS += adxl345_i2c.c
|
|
|
|
endif
|
|
|
|
|
2015-07-20 15:18:27 +02:00
|
|
|
ifeq ($(CONFIG_BMP180),y)
|
|
|
|
CSRCS += bmp180.c
|
|
|
|
endif
|
|
|
|
|
2011-09-10 18:20:09 +02:00
|
|
|
ifeq ($(CONFIG_I2C_LM75),y)
|
|
|
|
CSRCS += lm75.c
|
|
|
|
endif
|
2015-08-06 19:07:33 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_LM92),y)
|
|
|
|
CSRCS += lm92.c
|
|
|
|
endif
|
2015-08-07 00:33:02 +02:00
|
|
|
|
2015-08-11 16:03:10 +02:00
|
|
|
ifeq ($(CONFIG_MB7040),y)
|
|
|
|
CSRCS += mb7040.c
|
|
|
|
endif
|
|
|
|
|
2015-08-14 19:47:18 +02:00
|
|
|
ifeq ($(CONFIG_MS58XX),y)
|
|
|
|
CSRCS += ms58xx.c
|
2015-08-11 21:05:56 +02:00
|
|
|
endif
|
|
|
|
|
2014-12-16 15:16:53 +01:00
|
|
|
endif # CONFIG_I2C
|
|
|
|
|
|
|
|
# These drivers depend on SPI support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SPI),y)
|
|
|
|
ifeq ($(CONFIG_ADXL345_SPI),y)
|
|
|
|
CSRCS += adxl345_spi.c
|
2011-04-03 16:26:05 +02:00
|
|
|
endif
|
2015-02-12 19:21:05 +01:00
|
|
|
|
2015-09-13 23:56:48 +02:00
|
|
|
ifeq ($(CONFIG_MAX31855),y)
|
|
|
|
CSRCS += max31855.c
|
|
|
|
endif
|
|
|
|
|
2015-10-18 01:52:47 +02:00
|
|
|
ifeq ($(CONFIG_MAX6675),y)
|
|
|
|
CSRCS += max6675.c
|
|
|
|
endif
|
|
|
|
|
2015-02-12 19:21:05 +01:00
|
|
|
ifeq ($(CONFIG_MPL115A),y)
|
|
|
|
CSRCS += mpl115a.c
|
|
|
|
endif
|
2014-12-16 15:16:53 +01:00
|
|
|
endif # CONFIG_SPI
|
2011-04-03 16:26:05 +02:00
|
|
|
|
2012-02-14 16:32:57 +01:00
|
|
|
# Quadrature encoder upper half
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_QENCODER),y)
|
|
|
|
CSRCS += qencoder.c
|
|
|
|
endif
|
|
|
|
|
2015-10-13 15:27:16 +02:00
|
|
|
# Zero Cross upper half
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ZEROCROSS),y)
|
|
|
|
CSRCS += zerocross.c
|
|
|
|
endif
|
|
|
|
|
2011-05-16 17:09:39 +02:00
|
|
|
# Include sensor driver build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path sensors
|
|
|
|
VPATH += :sensors
|
2012-11-25 21:58:39 +01:00
|
|
|
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)sensors}
|
2014-12-16 16:54:32 +01:00
|
|
|
|
2015-07-20 15:18:27 +02:00
|
|
|
endif # CONFIG_SENSORS
|