summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm32f4discovery/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-02 22:20:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-02 22:20:39 +0000
commit4b022a4d75e174d7d03c5537baf12f8b8784dfd0 (patch)
treebb7f8e9d1cb292cf3a0e2b0872c12c4c502bd02f /nuttx/configs/stm32f4discovery/src/Makefile
parentdd4f93db606a1360efef7b59a97bd4a0bd8c6ad0 (diff)
downloadpx4-nuttx-4b022a4d75e174d7d03c5537baf12f8b8784dfd0.tar.gz
px4-nuttx-4b022a4d75e174d7d03c5537baf12f8b8784dfd0.tar.bz2
px4-nuttx-4b022a4d75e174d7d03c5537baf12f8b8784dfd0.zip
Beginnings of STM32 F4 OTG FS device driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4551 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm32f4discovery/src/Makefile')
-rw-r--r--nuttx/configs/stm32f4discovery/src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/configs/stm32f4discovery/src/Makefile b/nuttx/configs/stm32f4discovery/src/Makefile
index 074f8518e..55db39d03 100644
--- a/nuttx/configs/stm32f4discovery/src/Makefile
+++ b/nuttx/configs/stm32f4discovery/src/Makefile
@@ -1,7 +1,7 @@
############################################################################
# configs/stm32f4discovery/src/Makefile
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -56,6 +56,10 @@ ifeq ($(CONFIG_ARCH_BUTTONS),y)
CSRCS += up_buttons.c
endif
+ifeq ($(CONFIG_USBDEV),y)
+CSRCS += up_usbdev.c
+endif
+
ifeq ($(CONFIG_PWM),y)
CSRCS += up_pwm.c
endif