summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-03-28 21:28:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-03-28 21:28:12 +0000
commite68547844cfa419d0aecbc058589ba349a6b3d04 (patch)
tree842cd245d02d8b6421f835bb57cc28f191e5bb87
parent852f0e2025cacee914b6ac408caea4b7a81c4073 (diff)
downloadnuttx-e68547844cfa419d0aecbc058589ba349a6b3d04.tar.gz
nuttx-e68547844cfa419d0aecbc058589ba349a6b3d04.tar.bz2
nuttx-e68547844cfa419d0aecbc058589ba349a6b3d04.zip
Add USB serial/storage examples
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2563 42af7a65-404d-4744-a932-0658087f49c3
-rwxr-xr-xnuttx/configs/ea3131/src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/configs/ea3131/src/Makefile b/nuttx/configs/ea3131/src/Makefile
index ee4468bbf..264b6902f 100755
--- a/nuttx/configs/ea3131/src/Makefile
+++ b/nuttx/configs/ea3131/src/Makefile
@@ -1,7 +1,7 @@
############################################################################
# configs/ea3131/src/Makefile
#
-# Copyright (C) 2009 Gregory Nutt. All rights reserved.
+# Copyright (C) 2009-2010 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -44,6 +44,9 @@ CSRCS = up_boot.c up_buttons.c up_clkinit.c up_leds.c up_mem.c up_spi.c
ifeq ($(CONFIG_EXAMPLES_NSH_ARCHINIT),y)
CSRCS += up_nsh.c
endif
+ifeq ($(CONFIG_EXAMPLE),usbstorage)
+CSRCS += up_usbstrg.c
+endif
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)