summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f4discovery/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-24 21:31:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-24 21:31:24 +0000
commit68f81e1dfef545a718da2932d61aa207ea4588b2 (patch)
tree531befccc69a0cbe110d3f03ea7e1bb272d68c03 /nuttx/configs/stm32f4discovery/src/Makefile
parent5dbd06960d203d52f2b276ed8c7747ee9643fee7 (diff)
downloadpx4-nuttx-68f81e1dfef545a718da2932d61aa207ea4588b2.tar.gz
px4-nuttx-68f81e1dfef545a718da2932d61aa207ea4588b2.tar.bz2
px4-nuttx-68f81e1dfef545a718da2932d61aa207ea4588b2.zip
Add STM32F4Discovery support for an SSD1289-based LCD
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4769 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm32f4discovery/src/Makefile')
-rw-r--r--nuttx/configs/stm32f4discovery/src/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/configs/stm32f4discovery/src/Makefile b/nuttx/configs/stm32f4discovery/src/Makefile
index b5f449a47..0b279b1ba 100644
--- a/nuttx/configs/stm32f4discovery/src/Makefile
+++ b/nuttx/configs/stm32f4discovery/src/Makefile
@@ -72,6 +72,14 @@ ifeq ($(CONFIG_WATCHDOG),y)
CSRCS += up_watchdog.c
endif
+ifeq ($(CONFIG_STM32_FSMC),y)
+CSRCS += up_extmem.c
+
+ifeq ($(CONFIG_LCD_SSD1289),y)
+CSRCS += up_ssd1289.c
+endif
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)