From 6951366ecaa8f6e60fd2bf99bf531e031690ff02 Mon Sep 17 00:00:00 2001 From: Gregory Nutt <gnutt@nuttx.org> Date: Fri, 25 Mar 2016 16:00:28 -0600 Subject: [PATCH] Replace all calls to the OS internal usbdev_serialinitialize with proper calls to boardctl() --- examples/usbserial/usbserial_main.c | 11 +++++------ examples/usbterm/usbterm_main.c | 12 ++++++------ nshlib/nsh_usbconsole.c | 13 ++++++------- 3 files changed, 17 insertions(+), 19 deletions(-) diff --git a/examples/usbserial/usbserial_main.c b/examples/usbserial/usbserial_main.c index 88a44dd71..989b9c5c5 100644 --- a/examples/usbserial/usbserial_main.c +++ b/examples/usbserial/usbserial_main.c @@ -197,10 +197,8 @@ int main(int argc, FAR char *argv[]) int usbserial_main(int argc, char *argv[]) #endif { -#ifdef CONFIG_CDCACM struct boardioc_usbdev_ctrl_s ctrl; FAR void *handle; -#endif #ifndef CONFIG_EXAMPLES_USBSERIAL_INONLY int infd; #endif @@ -227,15 +225,16 @@ int usbserial_main(int argc, char *argv[]) ctrl.instance = 0; ctrl.handle = &handle; - ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); - #else -# warning REVISIT: This violates the OS/application interface - ret = usbdev_serialinitialize(0); + ctrl.usbdev = BOARDIOC_USBDEV_PL2303; + ctrl.action = BOARDIOC_USBDEV_CONNECT; + ctrl.instance = 0; + ctrl.handle = &handle; #endif + ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); if (ret < 0) { printf("usbserial_main: ERROR: Failed to create the USB serial device: %d\n", diff --git a/examples/usbterm/usbterm_main.c b/examples/usbterm/usbterm_main.c index 173d29235..12a3dcee6 100644 --- a/examples/usbterm/usbterm_main.c +++ b/examples/usbterm/usbterm_main.c @@ -183,10 +183,8 @@ int main(int argc, FAR char *argv[]) int usbterm_main(int argc, char *argv[]) #endif { -#ifdef CONFIG_CDCACM struct boardioc_usbdev_ctrl_s ctrl; FAR void *handle; -#endif pthread_attr_t attr; int ret; @@ -219,20 +217,22 @@ int usbterm_main(int argc, char *argv[]) ctrl.instance = 0; ctrl.handle = &handle; - ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); - #else -# warning REVISIT: This violates the OS/application interface - ret = usbdev_serialinitialize(0); + ctrl.usbdev = BOARDIOC_USBDEV_PL2303; + ctrl.action = BOARDIOC_USBDEV_CONNECT; + ctrl.instance = 0; + ctrl.handle = &handle; #endif + ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); if (ret < 0) { printf("usbterm_main: ERROR: Failed to create the USB serial device: %d\n", -ret); goto errout_with_devinit; } + printf("usbterm_main: Successfully registered the serial driver\n"); #if defined(CONFIG_USBDEV_TRACE) && CONFIG_USBDEV_TRACE_INITIALIDSET != 0 diff --git a/nshlib/nsh_usbconsole.c b/nshlib/nsh_usbconsole.c index 79289d858..e766ead9b 100644 --- a/nshlib/nsh_usbconsole.c +++ b/nshlib/nsh_usbconsole.c @@ -269,10 +269,8 @@ restart: int nsh_consolemain(int argc, char *argv[]) { FAR struct console_stdio_s *pstate = nsh_newconsole(); -#ifdef CONFIG_CDCACM struct boardioc_usbdev_ctrl_s ctrl; FAR void *handle; -#endif int ret; DEBUGASSERT(pstate); @@ -290,18 +288,19 @@ int nsh_consolemain(int argc, char *argv[]) ctrl.usbdev = BOARDIOC_USBDEV_CDCACM; ctrl.action = BOARDIOC_USBDEV_CONNECT; - ctrl.instance = 0; + ctrl.instance = CONFIG_NSH_USBDEV_MINOR; ctrl.handle = &handle; - ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); - #else -# warning REVISIT: This violates the OS/application interface - ret = usbdev_serialinitialize(CONFIG_NSH_USBDEV_MINOR); + ctrl.usbdev = BOARDIOC_USBDEV_PL2303; + ctrl.action = BOARDIOC_USBDEV_CONNECT; + ctrl.instance = CONFIG_NSH_USBDEV_MINOR; + ctrl.handle = &handle; #endif + ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); UNUSED(ret); /* Eliminate warning if not used */ DEBUGASSERT(ret == OK); #endif