Extend boardctl() USB device control to include PL2303 serial

This commit is contained in:
Gregory Nutt 2016-03-25 16:01:59 -06:00
parent e2b16e0cb6
commit cc5a678a9e
4 changed files with 8 additions and 7 deletions

8
TODO
View File

@ -469,14 +469,12 @@ o Kernel/Protected Build
These functions call directly into operating system functions These functions call directly into operating system functions
like: like:
- usbdev_serialinitialize - Called in apps/examples/usbserial,
apps/examples/usbterm
- cdcacm_classobject - Called from apps/system/composite. - cdcacm_classobject - Called from apps/system/composite.
- usbmsc_configure - Called fromo apps/system/usbmsc and - usbmsc_configure - Called from apps/system/usbmsc and
apps/system/composite apps/system/composite
- usbmsc_bindlun - Called fromo apps/system/usbmsc and - usbmsc_bindlun - Called from apps/system/usbmsc and
apps/system/composite apps/system/composite
- usbmsc_exportluns - Called fromo apps/system/usbmsc. - usbmsc_exportluns - Called from apps/system/usbmsc.
Status: Open Status: Open
Priority: Medium/High -- the kernel build configuration is not fully fielded Priority: Medium/High -- the kernel build configuration is not fully fielded

2
arch

@ -1 +1 @@
Subproject commit e0727147413b44e3c263abe8df70542dfa6b1edb Subproject commit 9da37a0989a52853fe27bb4acadf52dc155e7440

@ -1 +1 @@
Subproject commit 132d630c0fdbc793ad5a1438879ae50a399044e0 Subproject commit 7d4cd683fe8b2a6be2bf9d25c91afefa877a50bf

View File

@ -228,6 +228,9 @@ enum boardioc_usbdev_identifier_e
#ifdef CONFIG_CDCACM #ifdef CONFIG_CDCACM
, BOARDIOC_USBDEV_CDCACM /* CDC/ACM */ , BOARDIOC_USBDEV_CDCACM /* CDC/ACM */
#endif #endif
#ifdef CONFIG_PL2303
, BOARDIOC_USBDEV_PL2303 /* PL2303 serial */
#endif
#ifdef CONFIG_USBMSC #ifdef CONFIG_USBMSC
, BOARDIOC_USBDEV_MSC /* Mass storage class */ , BOARDIOC_USBDEV_MSC /* Mass storage class */
#endif #endif