summaryrefslogtreecommitdiff
path: root/nuttx/configs/shenzhou/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-25 19:17:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-25 19:17:52 +0000
commit6128e1302e09f9d598a4bc90964db586e4ce2533 (patch)
tree946077e2e8797c8b07a48d45dc49d0b9845a4a5f /nuttx/configs/shenzhou/src/Makefile
parent71fc9617d6ec04f095d594fa435ecd22bd5fca6f (diff)
downloadpx4-nuttx-6128e1302e09f9d598a4bc90964db586e4ce2533.tar.gz
px4-nuttx-6128e1302e09f9d598a4bc90964db586e4ce2533.tar.bz2
px4-nuttx-6128e1302e09f9d598a4bc90964db586e4ce2533.zip
Port STM3240G-EVAL ILI93xx driver to Shenzhou board
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5188 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/shenzhou/src/Makefile')
-rw-r--r--nuttx/configs/shenzhou/src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/configs/shenzhou/src/Makefile b/nuttx/configs/shenzhou/src/Makefile
index 2bfec8072..fc1d6caa1 100644
--- a/nuttx/configs/shenzhou/src/Makefile
+++ b/nuttx/configs/shenzhou/src/Makefile
@@ -84,8 +84,12 @@ ifeq ($(CONFIG_WATCHDOG),y)
CSRCS += up_watchdog.c
endif
+# NOTE: SSD1289 is not supported on the board
+
ifeq ($(CONFIG_LCD_SSD1289),y)
-CSRCS += up_ssd1289.c
+CSRCS += up_ssd1289.c
+else
+CSRCS += up_lcd.c
endif
COBJS = $(CSRCS:.c=$(OBJEXT))