summaryrefslogtreecommitdiff
path: root/nuttx/configs/teensy/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-20 19:07:22 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-20 19:07:22 +0000
commite23fb305e00f5c2cca3d5eaa898c556030e92076 (patch)
tree1bc28778644e4a632c0c92435bf09e9040a5309d /nuttx/configs/teensy/src/Makefile
parenteae3888f7401c8085488eed1c4c8c843a4a41c8f (diff)
downloadpx4-nuttx-e23fb305e00f5c2cca3d5eaa898c556030e92076.tar.gz
px4-nuttx-e23fb305e00f5c2cca3d5eaa898c556030e92076.tar.bz2
px4-nuttx-e23fb305e00f5c2cca3d5eaa898c556030e92076.zip
Add a USB mass storage example for AVR
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3727 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/teensy/src/Makefile')
-rwxr-xr-xnuttx/configs/teensy/src/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/configs/teensy/src/Makefile b/nuttx/configs/teensy/src/Makefile
index 0178709b4..e27f02663 100755
--- a/nuttx/configs/teensy/src/Makefile
+++ b/nuttx/configs/teensy/src/Makefile
@@ -41,6 +41,12 @@ CSRCS = up_boot.c
ifeq ($(CONFIG_ARCH_LEDS),y)
CSRCS += up_leds.c
endif
+ifeq ($(CONFIG_USBSTRG),y)
+CSRCS += up_usbstrg.c
+endif
+ifeq ($(CONFIG_AVR_SPI),y)
+CSRCS += up_spi.c
+endif
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))