From fbf1b0065abe6e969133cbd9ff0d0973246b0a2a Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 7 Apr 2012 22:32:35 +0000 Subject: Updates the STM3220G-EVAL configurations git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4572 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/configs/stm3220g-eval/src/Makefile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'nuttx/configs/stm3220g-eval/src/Makefile') diff --git a/nuttx/configs/stm3220g-eval/src/Makefile b/nuttx/configs/stm3220g-eval/src/Makefile index 3cc2040636..b79189cb1b 100644 --- a/nuttx/configs/stm3220g-eval/src/Makefile +++ b/nuttx/configs/stm3220g-eval/src/Makefile @@ -1,7 +1,7 @@ ############################################################################ # configs/stm3220g-eval/src/Makefile # -# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. +# Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt # # Redistribution and use in source and binary forms, with or without @@ -42,6 +42,10 @@ AOBJS = $(ASRCS:.S=$(OBJEXT)) CSRCS = up_boot.c up_spi.c +ifeq ($(CONFIG_HAVE_CXX),y) +CSRCS += up_cxxinitialize.c +endif + ifeq ($(CONFIG_ARCH_LEDS),y) CSRCS += up_autoleds.c else @@ -52,6 +56,14 @@ ifeq ($(CONFIG_ARCH_BUTTONS),y) CSRCS += up_buttons.c endif +ifeq ($(CONFIG_USBDEV),y) +CSRCS += up_usbdev.c +endif + +ifeq ($(CONFIG_STM32_FSMC),y) +CSRCS += up_extmem.c up_selectsram.c up_deselectsram.c +endif + ifeq ($(CONFIG_ADC),y) CSRCS += up_adc.c endif @@ -68,6 +80,10 @@ ifeq ($(CONFIG_NSH_ARCHINIT),y) CSRCS += up_nsh.c endif +ifeq ($(CONFIG_ARCH_FPU),y) +CSRCS += up_ostest.c +endif + COBJS = $(CSRCS:.c=$(OBJEXT)) SRCS = $(ASRCS) $(CSRCS) -- cgit v1.2.3