summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/stm3220g-eval/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-28 19:48:26 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-28 19:48:26 +0000
commite35c803d25a6745ec58b0b8a0835f140bb7d5003 (patch)
treed5af02e86fca6db39ff126655f20eb43ccacb13e /nuttx/configs/stm3220g-eval/src/Makefile
parent882406e6313e720164d46690b7c62c8f80a03de8 (diff)
Bring STM3220G-EVAL board configurations to same level as STM3240G-EVAL
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4779 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/configs/stm3220g-eval/src/Makefile')
-rw-r--r--nuttx/configs/stm3220g-eval/src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/configs/stm3220g-eval/src/Makefile b/nuttx/configs/stm3220g-eval/src/Makefile
index af845744bf..44cc7f1d18 100644
--- a/nuttx/configs/stm3220g-eval/src/Makefile
+++ b/nuttx/configs/stm3220g-eval/src/Makefile
@@ -61,7 +61,7 @@ CSRCS += up_usbdev.c
endif
ifeq ($(CONFIG_STM32_FSMC),y)
-CSRCS += up_extmem.c up_selectsram.c up_deselectsram.c
+CSRCS += up_lcd.c up_selectlcd.c up_deselectlcd.c up_selectsram.c up_deselectsram.c up_extmem.c
endif
ifeq ($(CONFIG_ADC),y)
@@ -84,6 +84,10 @@ ifeq ($(CONFIG_WATCHDOG),y)
CSRCS += up_watchdog.c
endif
+ifeq ($(CONFIG_INPUT_STMPE11),y)
+CSRCS += up_stmpe11.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)