summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-11-29 14:28:43 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-11-29 14:31:40 -0600
commitc89c2fdc075f24867fdd4df7086e4091dcc8911b (patch)
treea5d221a76d0f4752d54025901ad7a93a66389657
parent45a7656465ad1b5163dc5d5872edd96210ecbb61 (diff)
downloadnuttx-c89c2fdc075f24867fdd4df7086e4091dcc8911b.tar.gz
nuttx-c89c2fdc075f24867fdd4df7086e4091dcc8911b.tar.bz2
nuttx-c89c2fdc075f24867fdd4df7086e4091dcc8911b.zip
examples/hidkbd now expects an architecture-specific USB HOST initialization function
-rw-r--r--nuttx/configs/olimex-lpc-h3131/src/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/configs/olimex-lpc-h3131/src/Makefile b/nuttx/configs/olimex-lpc-h3131/src/Makefile
index 379ca529f..630007803 100644
--- a/nuttx/configs/olimex-lpc-h3131/src/Makefile
+++ b/nuttx/configs/olimex-lpc-h3131/src/Makefile
@@ -65,6 +65,9 @@ endif
ifeq ($(CONFIG_LPC31_USBOTG),y)
ifeq ($(CONFIG_USBHOST),y)
CSRCS += lpc31_usbhost.c
+ifeq ($(CONFIG_EXAMPLES_HIDKBD),y)
+CSRCS += lpc31_hidkbd.c
+endif
endif
endif