From 9bdb91ec537f8a7889a816cf989e6d91054effe5 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 31 Dec 2010 20:59:23 +0000 Subject: Initial debug fixes git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3226 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/configs/olimex-lpc1766stk/src/up_nsh.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'nuttx/configs/olimex-lpc1766stk/src') diff --git a/nuttx/configs/olimex-lpc1766stk/src/up_nsh.c b/nuttx/configs/olimex-lpc1766stk/src/up_nsh.c index 0d59dc4fa..afb6d084e 100755 --- a/nuttx/configs/olimex-lpc1766stk/src/up_nsh.c +++ b/nuttx/configs/olimex-lpc1766stk/src/up_nsh.c @@ -261,8 +261,20 @@ errout: static int nsh_usbhostinitialize(void) { int pid; + int ret; + + /* First, register all of the class drivers needed to support the drivers + * that we care about: + */ + + message("nsh_usbhostinitialize: Register class drivers\n"); + ret = usbhost_storageinit(); + if (ret != OK) + { + message("nsh_usbhostinitialize: Failed to register the mass storage class\n"); + } - /* First, get an instance of the USB host interface */ + /* Then get an instance of the USB host interface */ message("nsh_usbhostinitialize: Initialize USB host\n"); g_drvr = usbhost_initialize(0); -- cgit v1.2.3