examples/hidkbd now expects an architecture-specific USB HOST initialization function

This commit is contained in:
Gregory Nutt 2013-11-29 14:28:43 -06:00
parent 5a29e41ed9
commit 2d1408e3e1

View File

@ -65,6 +65,9 @@ endif
ifeq ($(CONFIG_LPC31_USBOTG),y) ifeq ($(CONFIG_LPC31_USBOTG),y)
ifeq ($(CONFIG_USBHOST),y) ifeq ($(CONFIG_USBHOST),y)
CSRCS += lpc31_usbhost.c CSRCS += lpc31_usbhost.c
ifeq ($(CONFIG_EXAMPLES_HIDKBD),y)
CSRCS += lpc31_hidkbd.c
endif
endif endif
endif endif