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
+3 -5
View File
@@ -469,14 +469,12 @@ o Kernel/Protected Build
These functions call directly into operating system functions
like:
- usbdev_serialinitialize - Called in apps/examples/usbserial,
apps/examples/usbterm
- 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
- usbmsc_bindlun - Called fromo apps/system/usbmsc and
- usbmsc_bindlun - Called from apps/system/usbmsc and
apps/system/composite
- usbmsc_exportluns - Called fromo apps/system/usbmsc.
- usbmsc_exportluns - Called from apps/system/usbmsc.
Status: Open
Priority: Medium/High -- the kernel build configuration is not fully fielded
+1 -1
Submodule arch updated: e072714741...9da37a0989
+1 -1
Submodule configs updated: 132d630c0f...7d4cd683fe
+3
View File
@@ -228,6 +228,9 @@ enum boardioc_usbdev_identifier_e
#ifdef CONFIG_CDCACM
, BOARDIOC_USBDEV_CDCACM /* CDC/ACM */
#endif
#ifdef CONFIG_PL2303
, BOARDIOC_USBDEV_PL2303 /* PL2303 serial */
#endif
#ifdef CONFIG_USBMSC
, BOARDIOC_USBDEV_MSC /* Mass storage class */
#endif