2010-05-11 11:55:28 +08:00
|
|
|
############################################################################
|
|
|
|
# drivers/lcd/Make.defs
|
|
|
|
#
|
2012-05-24 23:45:46 +08:00
|
|
|
# Copyright (C) 2010-2012 Gregory Nutt. All rights reserved.
|
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2010-05-11 11:55:28 +08: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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2010-12-06 03:54:23 +08:00
|
|
|
# Don't build anything if there is no NX support for LCD drivers
|
|
|
|
|
2010-05-11 11:55:28 +08:00
|
|
|
ifeq ($(CONFIG_NX_LCDDRIVER),y)
|
2010-12-06 03:54:23 +08:00
|
|
|
|
2011-05-16 23:09:39 +08:00
|
|
|
# Include LCD drivers
|
|
|
|
|
2010-12-06 00:16:50 +08:00
|
|
|
ifeq ($(CONFIG_LCD_P14201),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
CSRCS += p14201.c
|
2010-12-06 03:54:23 +08:00
|
|
|
endif
|
|
|
|
|
2010-12-06 00:16:50 +08:00
|
|
|
ifeq ($(CONFIG_LCD_NOKIA6100),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
CSRCS += nokia6100.c
|
2010-12-06 03:54:23 +08:00
|
|
|
endif
|
|
|
|
|
2012-11-08 05:53:14 +08:00
|
|
|
ifeq ($(CONFIG_LCD_UG2864AMBAG01),y)
|
|
|
|
CSRCS += ug-2864ambag01.c
|
|
|
|
endif
|
|
|
|
|
2011-04-19 01:16:24 +08:00
|
|
|
ifeq ($(CONFIG_LCD_UG9664HSWAG01),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
CSRCS += ug-9664hswag01.c
|
2011-04-18 07:48:01 +08:00
|
|
|
endif
|
|
|
|
|
2013-06-24 04:39:56 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1306),y)
|
2015-07-16 01:21:54 +08:00
|
|
|
CSRCS += ssd1306_base.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_SSD1306_SPI),y)
|
|
|
|
CSRCS += ssd1306_spi.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LCD_SSD1306_I2C),y)
|
|
|
|
CSRCS += ssd1306_i2c.c
|
2013-06-24 04:39:56 +08:00
|
|
|
endif
|
|
|
|
|
2012-05-24 23:45:46 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SSD1289),y)
|
|
|
|
CSRCS += ssd1289.c
|
|
|
|
endif
|
|
|
|
|
2012-06-05 02:45:48 +08:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT2),y)
|
|
|
|
CSRCS += mio283qt2.c
|
|
|
|
endif
|
|
|
|
|
2014-02-11 02:26:08 +08:00
|
|
|
ifeq ($(CONFIG_LCD_MIO283QT9A),y)
|
|
|
|
CSRCS += mio283qt9a.c
|
|
|
|
endif
|
|
|
|
|
2014-11-14 20:55:16 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ST7565),y)
|
|
|
|
CSRCS += st7565.c
|
|
|
|
endif
|
|
|
|
|
2013-03-22 22:30:54 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ST7567),y)
|
|
|
|
CSRCS += st7567.c
|
|
|
|
endif
|
|
|
|
|
2013-12-24 06:03:54 +08:00
|
|
|
ifeq ($(CONFIG_LCD_SHARP_MEMLCD),y)
|
|
|
|
CSRCS += memlcd.c
|
|
|
|
endif
|
|
|
|
|
2014-10-21 05:27:56 +08:00
|
|
|
ifeq ($(CONFIG_LCD_ILI9341),y)
|
|
|
|
CSRCS += ili9341.c
|
|
|
|
endif
|
|
|
|
|
2015-04-24 21:46:03 +08:00
|
|
|
ifeq ($(CONFIG_LCD_RA8875),y)
|
|
|
|
CSRCS += ra8875.c
|
|
|
|
endif
|
|
|
|
|
2011-05-16 23:09:39 +08:00
|
|
|
# Include LCD driver build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path lcd
|
|
|
|
VPATH += :lcd
|
2012-11-26 04:58:39 +08:00
|
|
|
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)lcd}
|
2010-05-11 11:55:28 +08:00
|
|
|
endif
|
|
|
|
|