diff --git a/configs/README.txt b/configs/README.txt index 77946f7fd1b..12db2e5efac 100644 --- a/configs/README.txt +++ b/configs/README.txt @@ -978,76 +978,76 @@ defconfig -- This is a configuration file similar to the Linux USB serial device class driver (Prolific PL2303 Emulation) - CONFIG_USBSER + CONFIG_PL2303 Enable compilation of the USB serial driver - CONFIG_USBSER_EPINTIN + CONFIG_PL2303_EPINTIN The logical 7-bit address of a hardware endpoint that supports interrupt IN operation - CONFIG_USBSER_EPBULKOUT + CONFIG_PL2303_EPBULKOUT The logical 7-bit address of a hardware endpoint that supports bulk OUT operation - CONFIG_USBSER_EPBULKIN + CONFIG_PL2303_EPBULKIN The logical 7-bit address of a hardware endpoint that supports bulk IN operation - CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS + CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS The number of write/read requests that can be in flight - CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR + CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR The vendor ID code/string - CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR + CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR The product ID code/string - CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE + CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE Size of the serial receive/transmit buffers USB serial device class driver (Standard CDC ACM class) - CONFIG_CDCSER + CONFIG_CDCACM Enable compilation of the USB serial driver - CONFIG_CDCSER_COMPOSITE + CONFIG_CDCACM_COMPOSITE Configure the CDC serial driver as part of a composite driver (only if CONFIG_USBDEV_COMPOSITE is also defined) - CONFIG_CDCSER_EP0MAXPACKET + CONFIG_CDCACM_EP0MAXPACKET Endpoint 0 max packet size. Default 64. - CONFIG_CDCSER_EPINTIN + CONFIG_CDCACM_EPINTIN The logical 7-bit address of a hardware endpoint that supports interrupt IN operation. Default 2. - CONFIG_CDCSER_EPINTIN_FSSIZE + CONFIG_CDCACM_EPINTIN_FSSIZE Max package size for the interrupt IN endpoint if full speed mode. Default 64. - CONFIG_CDCSER_EPINTIN_HSSIZE + CONFIG_CDCACM_EPINTIN_HSSIZE Max package size for the interrupt IN endpoint if high speed mode. Default 64. - CONFIG_CDCSER_EPBULKOUT + CONFIG_CDCACM_EPBULKOUT The logical 7-bit address of a hardware endpoint that supports bulk OUT operation - CONFIG_CDCSER_EPBULKOUT_FSSIZE + CONFIG_CDCACM_EPBULKOUT_FSSIZE Max package size for the bulk OUT endpoint if full speed mode. Default 64. - CONFIG_CDCSER_EPBULKOUT_HSSIZE + CONFIG_CDCACM_EPBULKOUT_HSSIZE Max package size for the bulk OUT endpoint if high speed mode. Default 512. - CONFIG_CDCSER_EPBULKIN + CONFIG_CDCACM_EPBULKIN The logical 7-bit address of a hardware endpoint that supports bulk IN operation - CONFIG_CDCSER_EPBULKIN_FSSIZE + CONFIG_CDCACM_EPBULKIN_FSSIZE Max package size for the bulk IN endpoint if full speed mode. Default 64. - CONFIG_CDCSER_EPBULKIN_HSSIZE + CONFIG_CDCACM_EPBULKIN_HSSIZE Max package size for the bulk IN endpoint if high speed mode. Default 512. - CONFIG_CDCSER_NWRREQS and CONFIG_CDCSER_NRDREQS + CONFIG_CDCACM_NWRREQS and CONFIG_CDCACM_NRDREQS The number of write/read requests that can be in flight. - CONFIG_CDCSER_NWRREQS includes write requests used for both the + CONFIG_CDCACM_NWRREQS includes write requests used for both the interrupt and bulk IN endpoints. Default 4. - CONFIG_CDCSER_VENDORID and CONFIG_CDCSER_VENDORSTR + CONFIG_CDCACM_VENDORID and CONFIG_CDCACM_VENDORSTR The vendor ID code/string. Default 0x0525 and "NuttX" 0x0525 is the Netchip vendor and should not be used in any products. This default VID was selected for compatibility with the Linux CDC ACM default VID. - CONFIG_CDCSER_PRODUCTID and CONFIG_CDCSER_PRODUCTSTR + CONFIG_CDCACM_PRODUCTID and CONFIG_CDCACM_PRODUCTSTR The product ID code/string. Default 0xa4a7 and "CDC/ACM Serial" 0xa4a7 was selected for compatibility with the Linux CDC ACM default PID. - CONFIG_CDCSER_RXBUFSIZE and CONFIG_CDCSER_TXBUFSIZE + CONFIG_CDCACM_RXBUFSIZE and CONFIG_CDCACM_TXBUFSIZE Size of the serial receive/transmit buffers. Default 256. USB Storage Device Configuration diff --git a/configs/amber/hello/defconfig b/configs/amber/hello/defconfig index 400585f9917..862d079b962 100644 --- a/configs/amber/hello/defconfig +++ b/configs/amber/hello/defconfig @@ -542,38 +542,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/avr32dev1/nsh/defconfig b/configs/avr32dev1/nsh/defconfig index 505be57c9bf..3d2c5544f29 100755 --- a/configs/avr32dev1/nsh/defconfig +++ b/configs/avr32dev1/nsh/defconfig @@ -570,38 +570,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/avr32dev1/ostest/defconfig b/configs/avr32dev1/ostest/defconfig index a2376daf3a7..668b2ec0542 100755 --- a/configs/avr32dev1/ostest/defconfig +++ b/configs/avr32dev1/ostest/defconfig @@ -570,38 +570,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/demo9s12ne64/ostest/defconfig b/configs/demo9s12ne64/ostest/defconfig index 14430c3da0f..fa7c36db930 100755 --- a/configs/demo9s12ne64/ostest/defconfig +++ b/configs/demo9s12ne64/ostest/defconfig @@ -546,38 +546,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3131/nsh/defconfig b/configs/ea3131/nsh/defconfig index aea79004793..fa09b56004d 100644 --- a/configs/ea3131/nsh/defconfig +++ b/configs/ea3131/nsh/defconfig @@ -553,38 +553,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3131/ostest/defconfig b/configs/ea3131/ostest/defconfig index 8aa8672ab0e..cc4e8ddb612 100644 --- a/configs/ea3131/ostest/defconfig +++ b/configs/ea3131/ostest/defconfig @@ -553,38 +553,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3131/pgnsh/defconfig b/configs/ea3131/pgnsh/defconfig index f8ffcecb480..da217f4d336 100644 --- a/configs/ea3131/pgnsh/defconfig +++ b/configs/ea3131/pgnsh/defconfig @@ -704,38 +704,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3131/usbserial/defconfig b/configs/ea3131/usbserial/defconfig index 5d1023570d9..470df0d8a8d 100644 --- a/configs/ea3131/usbserial/defconfig +++ b/configs/ea3131/usbserial/defconfig @@ -556,38 +556,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3131/usbstorage/defconfig b/configs/ea3131/usbstorage/defconfig index 210384a634e..f681f3f2a2b 100644 --- a/configs/ea3131/usbstorage/defconfig +++ b/configs/ea3131/usbstorage/defconfig @@ -556,38 +556,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ea3152/ostest/defconfig b/configs/ea3152/ostest/defconfig index 14496b590bf..8a3dcb98a52 100644 --- a/configs/ea3152/ostest/defconfig +++ b/configs/ea3152/ostest/defconfig @@ -554,38 +554,38 @@ CONFIG_LPC31XX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200kitg/ostest/defconfig b/configs/ez80f910200kitg/ostest/defconfig index 73b289cb831..e1a0ad5ef84 100644 --- a/configs/ez80f910200kitg/ostest/defconfig +++ b/configs/ez80f910200kitg/ostest/defconfig @@ -466,37 +466,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/dhcpd/defconfig b/configs/ez80f910200zco/dhcpd/defconfig index 3127f86a670..dd3230e82dd 100644 --- a/configs/ez80f910200zco/dhcpd/defconfig +++ b/configs/ez80f910200zco/dhcpd/defconfig @@ -474,37 +474,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/httpd/defconfig b/configs/ez80f910200zco/httpd/defconfig index cf1926dbc42..7b1961a3544 100644 --- a/configs/ez80f910200zco/httpd/defconfig +++ b/configs/ez80f910200zco/httpd/defconfig @@ -474,37 +474,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/nettest/defconfig b/configs/ez80f910200zco/nettest/defconfig index 6fa22d3257f..f2f267b9265 100644 --- a/configs/ez80f910200zco/nettest/defconfig +++ b/configs/ez80f910200zco/nettest/defconfig @@ -474,37 +474,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/nsh/defconfig b/configs/ez80f910200zco/nsh/defconfig index 71f9f758ac9..73393b56e08 100644 --- a/configs/ez80f910200zco/nsh/defconfig +++ b/configs/ez80f910200zco/nsh/defconfig @@ -474,37 +474,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/ostest/defconfig b/configs/ez80f910200zco/ostest/defconfig index 50dec56bac3..340ee9d4230 100644 --- a/configs/ez80f910200zco/ostest/defconfig +++ b/configs/ez80f910200zco/ostest/defconfig @@ -469,37 +469,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ez80f910200zco/poll/defconfig b/configs/ez80f910200zco/poll/defconfig index bac05b8a861..d90836a171a 100644 --- a/configs/ez80f910200zco/poll/defconfig +++ b/configs/ez80f910200zco/poll/defconfig @@ -474,37 +474,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/README.txt b/configs/hymini-stm32v/README.txt index a3241da722f..3f87f4ef50c 100755 --- a/configs/hymini-stm32v/README.txt +++ b/configs/hymini-stm32v/README.txt @@ -647,11 +647,11 @@ Where is one of the following: to use the CDC/ACM serial class by making the following changes to the configuration file: - -CONFIG_USBSER=y - +CONFIG_USBSER=n + -CONFIG_PL2303=y + +CONFIG_PL2303=n - -CONFIG_CDCSER=n - +CONFIG_CDCSER=y + -CONFIG_CDCACM=n + +CONFIG_CDCACM=y The example can also be converted to use the alternative USB serial example at apps/examples/usbterm by changing the diff --git a/configs/hymini-stm32v/buttons/defconfig b/configs/hymini-stm32v/buttons/defconfig index 908d9eebfb0..811400e259a 100644 --- a/configs/hymini-stm32v/buttons/defconfig +++ b/configs/hymini-stm32v/buttons/defconfig @@ -637,38 +637,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/nsh/defconfig b/configs/hymini-stm32v/nsh/defconfig index d30c40a0b1a..2dddc77fed4 100755 --- a/configs/hymini-stm32v/nsh/defconfig +++ b/configs/hymini-stm32v/nsh/defconfig @@ -640,38 +640,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/nsh2/defconfig b/configs/hymini-stm32v/nsh2/defconfig index 8e4963650d9..897feeabff8 100644 --- a/configs/hymini-stm32v/nsh2/defconfig +++ b/configs/hymini-stm32v/nsh2/defconfig @@ -610,38 +610,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/nx/defconfig b/configs/hymini-stm32v/nx/defconfig index ab7b9b2ac7e..48f1a866d98 100644 --- a/configs/hymini-stm32v/nx/defconfig +++ b/configs/hymini-stm32v/nx/defconfig @@ -656,38 +656,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/nxlines/defconfig b/configs/hymini-stm32v/nxlines/defconfig index 5e3a2e9b073..e6b33fbced4 100644 --- a/configs/hymini-stm32v/nxlines/defconfig +++ b/configs/hymini-stm32v/nxlines/defconfig @@ -660,38 +660,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/hymini-stm32v/usbserial/defconfig b/configs/hymini-stm32v/usbserial/defconfig index 4f087671fa2..d5ef2ffc48f 100755 --- a/configs/hymini-stm32v/usbserial/defconfig +++ b/configs/hymini-stm32v/usbserial/defconfig @@ -636,107 +636,107 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration (Prolific PL2303 Emulation) # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB serial device class driver (Standard CDC ACM class) # -# CONFIG_CDCSER +# CONFIG_CDCACM # Enable compilation of the USB serial driver -# CONFIG_CDCSER_EP0MAXPACKET +# CONFIG_CDCACM_EP0MAXPACKET # Endpoint 0 max packet size. Default 64 -# CONFIG_CDCSER_EPINTIN +# CONFIG_CDCACM_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation. Default 2. -# CONFIG_CDCSER_EPINTIN_FSSIZE +# CONFIG_CDCACM_EPINTIN_FSSIZE # Max package size for the interrupt IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPINTIN_HSSIZE +# CONFIG_CDCACM_EPINTIN_HSSIZE # Max package size for the interrupt IN endpoint if high speed mode. # Default 64 -# CONFIG_CDCSER_EPBULKOUT +# CONFIG_CDCACM_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_CDCSER_EPBULKOUT_FSSIZE +# CONFIG_CDCACM_EPBULKOUT_FSSIZE # Max package size for the bulk OUT endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKOUT_HSSIZE +# CONFIG_CDCACM_EPBULKOUT_HSSIZE # Max package size for the bulk OUT endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_EPBULKIN +# CONFIG_CDCACM_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_CDCSER_EPBULKIN_FSSIZE +# CONFIG_CDCACM_EPBULKIN_FSSIZE # Max package size for the bulk IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKIN_HSSIZE +# CONFIG_CDCACM_EPBULKIN_HSSIZE # Max package size for the bulk IN endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_NWRREQS and CONFIG_CDCSER_NRDREQS +# CONFIG_CDCACM_NWRREQS and CONFIG_CDCACM_NRDREQS # The number of write/read requests that can be in flight. # Default 256. -# CONFIG_CDCSER_VENDORID and CONFIG_CDCSER_VENDORSTR +# CONFIG_CDCACM_VENDORID and CONFIG_CDCACM_VENDORSTR # The vendor ID code/string. Default 0x0525 and "NuttX" # 0x0525 is the Netchip vendor and should not be used in any # products. This default VID was selected for compatibility with # the Linux CDC ACM default VID. -# CONFIG_CDCSER_PRODUCTID and CONFIG_CDCSER_PRODUCTSTR +# CONFIG_CDCACM_PRODUCTID and CONFIG_CDCACM_PRODUCTSTR # The product ID code/string. Default 0xara7 and "CDC/ACM Serial" # 0xa4a7 was selected for compatibility with the Linux CDC ACM # default PID. -# CONFIG_CDCSER_RXBUFSIZE and CONFIG_CDCSER_TXBUFSIZE +# CONFIG_CDCACM_RXBUFSIZE and CONFIG_CDCACM_TXBUFSIZE # Size of the serial receive/transmit buffers. Default 256. # -CONFIG_CDCSER=n -#CONFIG_CDCSER_EP0MAXPACKET -#CONFIG_CDCSER_EPINTIN -#CONFIG_CDCSER_EPINTIN_FSSIZE -#CONFIG_CDCSER_EPINTIN_HSSIZE -#CONFIG_CDCSER_EPBULKOUT -#CONFIG_CDCSER_EPBULKOUT_FSSIZE -#CONFIG_CDCSER_EPBULKOUT_HSSIZE -#CONFIG_CDCSER_EPBULKIN -#CONFIG_CDCSER_EPBULKIN_FSSIZE -#CONFIG_CDCSER_EPBULKIN_HSSIZE -#CONFIG_CDCSER_NWRREQS -#CONFIG_CDCSER_NRDREQS -#CONFIG_CDCSER_VENDORID -#CONFIG_CDCSER_VENDORSTR -#CONFIG_CDCSER_PRODUCTID -#CONFIG_CDCSER_PRODUCTSTR -#CONFIG_CDCSER_RXBUFSIZE -#CONFIG_CDCSER_TXBUFSIZE +CONFIG_CDCACM=n +#CONFIG_CDCACM_EP0MAXPACKET +#CONFIG_CDCACM_EPINTIN +#CONFIG_CDCACM_EPINTIN_FSSIZE +#CONFIG_CDCACM_EPINTIN_HSSIZE +#CONFIG_CDCACM_EPBULKOUT +#CONFIG_CDCACM_EPBULKOUT_FSSIZE +#CONFIG_CDCACM_EPBULKOUT_HSSIZE +#CONFIG_CDCACM_EPBULKIN +#CONFIG_CDCACM_EPBULKIN_FSSIZE +#CONFIG_CDCACM_EPBULKIN_HSSIZE +#CONFIG_CDCACM_NWRREQS +#CONFIG_CDCACM_NRDREQS +#CONFIG_CDCACM_VENDORID +#CONFIG_CDCACM_VENDORSTR +#CONFIG_CDCACM_PRODUCTID +#CONFIG_CDCACM_PRODUCTSTR +#CONFIG_CDCACM_RXBUFSIZE +#CONFIG_CDCACM_TXBUFSIZE # USB Storage Device Configuration # diff --git a/configs/hymini-stm32v/usbstorage/defconfig b/configs/hymini-stm32v/usbstorage/defconfig index 5e32895ffb8..e55183f54af 100755 --- a/configs/hymini-stm32v/usbstorage/defconfig +++ b/configs/hymini-stm32v/usbstorage/defconfig @@ -648,38 +648,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/kwikstik-k40/ostest/defconfig b/configs/kwikstik-k40/ostest/defconfig index 57ffe91c048..3dec59521dd 100755 --- a/configs/kwikstik-k40/ostest/defconfig +++ b/configs/kwikstik-k40/ostest/defconfig @@ -697,38 +697,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/dhcpd/defconfig b/configs/lpcxpresso-lpc1768/dhcpd/defconfig index d19ae4538fe..1b80f4ccf39 100755 --- a/configs/lpcxpresso-lpc1768/dhcpd/defconfig +++ b/configs/lpcxpresso-lpc1768/dhcpd/defconfig @@ -632,38 +632,38 @@ CONFIG_LPC17_USBDEV_NOLED=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/nsh/defconfig b/configs/lpcxpresso-lpc1768/nsh/defconfig index add5f015b37..b6b438ae88e 100755 --- a/configs/lpcxpresso-lpc1768/nsh/defconfig +++ b/configs/lpcxpresso-lpc1768/nsh/defconfig @@ -672,38 +672,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/nx/defconfig b/configs/lpcxpresso-lpc1768/nx/defconfig index 043c9639808..6b584ab87d3 100755 --- a/configs/lpcxpresso-lpc1768/nx/defconfig +++ b/configs/lpcxpresso-lpc1768/nx/defconfig @@ -643,38 +643,38 @@ CONFIG_LPC17_USBDEV_NOLED=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/ostest/defconfig b/configs/lpcxpresso-lpc1768/ostest/defconfig index 9dfaf4c5e89..1e42d603177 100755 --- a/configs/lpcxpresso-lpc1768/ostest/defconfig +++ b/configs/lpcxpresso-lpc1768/ostest/defconfig @@ -628,38 +628,38 @@ CONFIG_LPC17_USBDEV_NOLED=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/thttpd/defconfig b/configs/lpcxpresso-lpc1768/thttpd/defconfig index 62ee7748127..ecfe5959a5a 100755 --- a/configs/lpcxpresso-lpc1768/thttpd/defconfig +++ b/configs/lpcxpresso-lpc1768/thttpd/defconfig @@ -637,38 +637,38 @@ CONFIG_LPC17_USBDEV_NOLED=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/lpcxpresso-lpc1768/usbstorage/defconfig b/configs/lpcxpresso-lpc1768/usbstorage/defconfig index c2221151a75..f18ac3a2aa5 100755 --- a/configs/lpcxpresso-lpc1768/usbstorage/defconfig +++ b/configs/lpcxpresso-lpc1768/usbstorage/defconfig @@ -617,38 +617,38 @@ CONFIG_LPC17_USBDEV_NOLED=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mbed/hidkbd/defconfig b/configs/mbed/hidkbd/defconfig index 322780d8491..71be225be2d 100644 --- a/configs/mbed/hidkbd/defconfig +++ b/configs/mbed/hidkbd/defconfig @@ -660,38 +660,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mbed/nsh/defconfig b/configs/mbed/nsh/defconfig index 1e1b10b3a8d..6d23e1d193d 100755 --- a/configs/mbed/nsh/defconfig +++ b/configs/mbed/nsh/defconfig @@ -602,38 +602,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mcu123-lpc214x/nsh/defconfig b/configs/mcu123-lpc214x/nsh/defconfig index cfe99367c82..c398546dff1 100644 --- a/configs/mcu123-lpc214x/nsh/defconfig +++ b/configs/mcu123-lpc214x/nsh/defconfig @@ -465,37 +465,37 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mcu123-lpc214x/ostest/defconfig b/configs/mcu123-lpc214x/ostest/defconfig index 0d4d5010b1c..1793d5d27e0 100644 --- a/configs/mcu123-lpc214x/ostest/defconfig +++ b/configs/mcu123-lpc214x/ostest/defconfig @@ -455,37 +455,37 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mcu123-lpc214x/usbserial/defconfig b/configs/mcu123-lpc214x/usbserial/defconfig index 8d241576a7d..f7bc30d69c4 100644 --- a/configs/mcu123-lpc214x/usbserial/defconfig +++ b/configs/mcu123-lpc214x/usbserial/defconfig @@ -455,37 +455,37 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 CONFIG_NXFLAT=n # diff --git a/configs/mcu123-lpc214x/usbstorage/defconfig b/configs/mcu123-lpc214x/usbstorage/defconfig index 98cf9b34333..44dd15ff048 100644 --- a/configs/mcu123-lpc214x/usbstorage/defconfig +++ b/configs/mcu123-lpc214x/usbstorage/defconfig @@ -456,37 +456,37 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration @@ -495,18 +495,18 @@ CONFIG_USBSER_TXBUFSIZE=512 # Enable compilation of the USB storage driver # CONFIG_USBMSC_EP0MAXPACKET # Max packet size for endpoint 0 -# CONFIG_USBSER_EPBULKOUT and CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKOUT and CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoints that support # bulk OUT and IN operations -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight # CONFIG_USBMSC_BULKINREQLEN and CONFIG_USBMSC_BULKOUTREQLEN # The size of the buffer in each write/read request. This # value needs to be at least as large as the endpoint # maxpacket and ideally as large as a block device sector. -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string # CONFIG_USBMSC_REMOVABLE # Select if the media is removable diff --git a/configs/micropendous3/hello/defconfig b/configs/micropendous3/hello/defconfig index 818f7c5ade7..ccd0f9d6010 100644 --- a/configs/micropendous3/hello/defconfig +++ b/configs/micropendous3/hello/defconfig @@ -536,38 +536,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/mx1ads/ostest/defconfig b/configs/mx1ads/ostest/defconfig index afc989ff4e1..b5f97c37c5c 100644 --- a/configs/mx1ads/ostest/defconfig +++ b/configs/mx1ads/ostest/defconfig @@ -439,34 +439,34 @@ CONFIG_IMX_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ne64badge/ostest/defconfig b/configs/ne64badge/ostest/defconfig index aa6c255db31..32af8f7e698 100755 --- a/configs/ne64badge/ostest/defconfig +++ b/configs/ne64badge/ostest/defconfig @@ -557,38 +557,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/nettest/defconfig b/configs/ntosd-dm320/nettest/defconfig index bd62fad043a..b8962b73944 100644 --- a/configs/ntosd-dm320/nettest/defconfig +++ b/configs/ntosd-dm320/nettest/defconfig @@ -429,37 +429,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/nsh/defconfig b/configs/ntosd-dm320/nsh/defconfig index 635fe82f5d2..3556438f3bc 100644 --- a/configs/ntosd-dm320/nsh/defconfig +++ b/configs/ntosd-dm320/nsh/defconfig @@ -436,37 +436,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/ostest/defconfig b/configs/ntosd-dm320/ostest/defconfig index 7d60da4b32e..a9790803cae 100644 --- a/configs/ntosd-dm320/ostest/defconfig +++ b/configs/ntosd-dm320/ostest/defconfig @@ -427,34 +427,34 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/poll/defconfig b/configs/ntosd-dm320/poll/defconfig index 55a158eeb87..c1e62fb1ba7 100644 --- a/configs/ntosd-dm320/poll/defconfig +++ b/configs/ntosd-dm320/poll/defconfig @@ -429,37 +429,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/thttpd/defconfig b/configs/ntosd-dm320/thttpd/defconfig index 6236bb6f675..df4e96add4c 100644 --- a/configs/ntosd-dm320/thttpd/defconfig +++ b/configs/ntosd-dm320/thttpd/defconfig @@ -477,37 +477,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/udp/defconfig b/configs/ntosd-dm320/udp/defconfig index b4565882730..00aec20d6e1 100644 --- a/configs/ntosd-dm320/udp/defconfig +++ b/configs/ntosd-dm320/udp/defconfig @@ -428,37 +428,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/ntosd-dm320/uip/defconfig b/configs/ntosd-dm320/uip/defconfig index 7f34477986e..15d3d96482d 100644 --- a/configs/ntosd-dm320/uip/defconfig +++ b/configs/ntosd-dm320/uip/defconfig @@ -429,37 +429,37 @@ CONFIG_DM320_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/nucleus2g/nsh/defconfig b/configs/nucleus2g/nsh/defconfig index 7ea8d34a5d3..3b3528b0956 100755 --- a/configs/nucleus2g/nsh/defconfig +++ b/configs/nucleus2g/nsh/defconfig @@ -654,38 +654,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/nucleus2g/ostest/defconfig b/configs/nucleus2g/ostest/defconfig index 455a0d7f84c..719adae7ea6 100755 --- a/configs/nucleus2g/ostest/defconfig +++ b/configs/nucleus2g/ostest/defconfig @@ -602,38 +602,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/nucleus2g/usbserial/defconfig b/configs/nucleus2g/usbserial/defconfig index 5be30ccdc46..33b3e32bad7 100755 --- a/configs/nucleus2g/usbserial/defconfig +++ b/configs/nucleus2g/usbserial/defconfig @@ -603,38 +603,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/nucleus2g/usbstorage/defconfig b/configs/nucleus2g/usbstorage/defconfig index 20bfd0811df..fc16725f685 100755 --- a/configs/nucleus2g/usbstorage/defconfig +++ b/configs/nucleus2g/usbstorage/defconfig @@ -603,38 +603,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/ftpc/defconfig b/configs/olimex-lpc1766stk/ftpc/defconfig index aacd2db6974..d2949b9aa2a 100755 --- a/configs/olimex-lpc1766stk/ftpc/defconfig +++ b/configs/olimex-lpc1766stk/ftpc/defconfig @@ -723,38 +723,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/hidkbd/defconfig b/configs/olimex-lpc1766stk/hidkbd/defconfig index 6f6a50eb0af..6d64decaec3 100755 --- a/configs/olimex-lpc1766stk/hidkbd/defconfig +++ b/configs/olimex-lpc1766stk/hidkbd/defconfig @@ -706,38 +706,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/nettest/defconfig b/configs/olimex-lpc1766stk/nettest/defconfig index 8d99b6a5ce1..d3fb829d672 100755 --- a/configs/olimex-lpc1766stk/nettest/defconfig +++ b/configs/olimex-lpc1766stk/nettest/defconfig @@ -659,38 +659,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/nsh/defconfig b/configs/olimex-lpc1766stk/nsh/defconfig index 7c183c44c8d..157ccf08c66 100755 --- a/configs/olimex-lpc1766stk/nsh/defconfig +++ b/configs/olimex-lpc1766stk/nsh/defconfig @@ -751,38 +751,38 @@ CONFIG_USBHOST_IOBUFSIZE=512 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/nx/defconfig b/configs/olimex-lpc1766stk/nx/defconfig index 17bbfda4450..b2bbd75d450 100755 --- a/configs/olimex-lpc1766stk/nx/defconfig +++ b/configs/olimex-lpc1766stk/nx/defconfig @@ -669,38 +669,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/ostest/defconfig b/configs/olimex-lpc1766stk/ostest/defconfig index f6192207d88..7925624e368 100755 --- a/configs/olimex-lpc1766stk/ostest/defconfig +++ b/configs/olimex-lpc1766stk/ostest/defconfig @@ -650,38 +650,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/slip-httpd/defconfig b/configs/olimex-lpc1766stk/slip-httpd/defconfig index 1da53655ef9..d6e96418130 100755 --- a/configs/olimex-lpc1766stk/slip-httpd/defconfig +++ b/configs/olimex-lpc1766stk/slip-httpd/defconfig @@ -676,38 +676,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/thttpd/defconfig b/configs/olimex-lpc1766stk/thttpd/defconfig index 4c74d561fc7..78411123f65 100755 --- a/configs/olimex-lpc1766stk/thttpd/defconfig +++ b/configs/olimex-lpc1766stk/thttpd/defconfig @@ -668,38 +668,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/usbserial/defconfig b/configs/olimex-lpc1766stk/usbserial/defconfig index f644cc3ad38..76aa55200f1 100755 --- a/configs/olimex-lpc1766stk/usbserial/defconfig +++ b/configs/olimex-lpc1766stk/usbserial/defconfig @@ -651,38 +651,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/usbstorage/defconfig b/configs/olimex-lpc1766stk/usbstorage/defconfig index 5b23fa431fb..6df0b20d62f 100755 --- a/configs/olimex-lpc1766stk/usbstorage/defconfig +++ b/configs/olimex-lpc1766stk/usbstorage/defconfig @@ -651,38 +651,38 @@ CONFIG_LPC17_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-lpc1766stk/wlan/defconfig b/configs/olimex-lpc1766stk/wlan/defconfig index 203860ec17c..7f1ed86e6ad 100755 --- a/configs/olimex-lpc1766stk/wlan/defconfig +++ b/configs/olimex-lpc1766stk/wlan/defconfig @@ -704,38 +704,38 @@ CONFIG_USBHOST_IOBUFSIZE=448 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-strp711/nettest/defconfig b/configs/olimex-strp711/nettest/defconfig index 24d516288a3..abaf6919534 100755 --- a/configs/olimex-strp711/nettest/defconfig +++ b/configs/olimex-strp711/nettest/defconfig @@ -561,37 +561,37 @@ CONFIG_STR71X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-strp711/nsh/defconfig b/configs/olimex-strp711/nsh/defconfig index 5608c84de72..67b51d28ecd 100644 --- a/configs/olimex-strp711/nsh/defconfig +++ b/configs/olimex-strp711/nsh/defconfig @@ -518,37 +518,37 @@ CONFIG_STR71X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/olimex-strp711/ostest/defconfig b/configs/olimex-strp711/ostest/defconfig index a3439eb3da6..f8c43e1fae3 100644 --- a/configs/olimex-strp711/ostest/defconfig +++ b/configs/olimex-strp711/ostest/defconfig @@ -518,37 +518,37 @@ CONFIG_STR71X_USBDEV_DMAINTMASK=0 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/pcblogic-pic32mx/nsh/defconfig b/configs/pcblogic-pic32mx/nsh/defconfig index 6592a3da21b..8aa8adb9c85 100644 --- a/configs/pcblogic-pic32mx/nsh/defconfig +++ b/configs/pcblogic-pic32mx/nsh/defconfig @@ -669,38 +669,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/pcblogic-pic32mx/ostest/defconfig b/configs/pcblogic-pic32mx/ostest/defconfig index babad70e07e..9298dc4bd30 100644 --- a/configs/pcblogic-pic32mx/ostest/defconfig +++ b/configs/pcblogic-pic32mx/ostest/defconfig @@ -614,38 +614,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/pic32-starterkit/ostest/defconfig b/configs/pic32-starterkit/ostest/defconfig index a9df26cb6d0..5cb21d07c0c 100644 --- a/configs/pic32-starterkit/ostest/defconfig +++ b/configs/pic32-starterkit/ostest/defconfig @@ -701,38 +701,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sam3u-ek/knsh/defconfig b/configs/sam3u-ek/knsh/defconfig index 20a443a8c7d..1cc6d976f6d 100755 --- a/configs/sam3u-ek/knsh/defconfig +++ b/configs/sam3u-ek/knsh/defconfig @@ -586,38 +586,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sam3u-ek/nsh/defconfig b/configs/sam3u-ek/nsh/defconfig index 1843829be28..4c4ed90b29d 100755 --- a/configs/sam3u-ek/nsh/defconfig +++ b/configs/sam3u-ek/nsh/defconfig @@ -556,38 +556,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sam3u-ek/nx/defconfig b/configs/sam3u-ek/nx/defconfig index a1bd142eee2..5f0fa1854ee 100755 --- a/configs/sam3u-ek/nx/defconfig +++ b/configs/sam3u-ek/nx/defconfig @@ -565,38 +565,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sam3u-ek/ostest/defconfig b/configs/sam3u-ek/ostest/defconfig index 9be22a3d098..a0610a66ffa 100755 --- a/configs/sam3u-ek/ostest/defconfig +++ b/configs/sam3u-ek/ostest/defconfig @@ -554,38 +554,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sam3u-ek/touchscreen/defconfig b/configs/sam3u-ek/touchscreen/defconfig index 1ccd5553184..75ecc55c72a 100755 --- a/configs/sam3u-ek/touchscreen/defconfig +++ b/configs/sam3u-ek/touchscreen/defconfig @@ -597,38 +597,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/skp16c26/ostest/defconfig b/configs/skp16c26/ostest/defconfig index dd3690bf881..fca9dc7e1cf 100644 --- a/configs/skp16c26/ostest/defconfig +++ b/configs/skp16c26/ostest/defconfig @@ -430,34 +430,34 @@ CONFIG_M16C_USBDEV_DMA=n # # USB Serial Device Configuration # -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER_EPINTIN=3 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=1 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303_EPINTIN=3 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=1 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/README.txt b/configs/stm3210e-eval/README.txt index 1a38bac823f..a86b325265b 100755 --- a/configs/stm3210e-eval/README.txt +++ b/configs/stm3210e-eval/README.txt @@ -773,11 +773,11 @@ Where is one of the following: to use the CDC/ACM serial class by making the following changes to the configuration file: - -CONFIG_USBSER=y - +CONFIG_USBSER=n + -CONFIG_PL2303=y + +CONFIG_PL2303=n - -CONFIG_CDCSER=n - +CONFIG_CDCSER=y + -CONFIG_CDCACM=n + +CONFIG_CDCACM=y The example can also be converted to use the alternative USB serial example at apps/examples/usbterm by changing the diff --git a/configs/stm3210e-eval/RIDE/defconfig b/configs/stm3210e-eval/RIDE/defconfig index 8922e584e1c..f91c1c1451a 100755 --- a/configs/stm3210e-eval/RIDE/defconfig +++ b/configs/stm3210e-eval/RIDE/defconfig @@ -649,38 +649,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/buttons/defconfig b/configs/stm3210e-eval/buttons/defconfig index d311435e31f..ed0ffaacd80 100644 --- a/configs/stm3210e-eval/buttons/defconfig +++ b/configs/stm3210e-eval/buttons/defconfig @@ -662,38 +662,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/nsh/defconfig b/configs/stm3210e-eval/nsh/defconfig index 6b32d2094b3..826e2ad52d7 100755 --- a/configs/stm3210e-eval/nsh/defconfig +++ b/configs/stm3210e-eval/nsh/defconfig @@ -665,38 +665,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/nsh2/defconfig b/configs/stm3210e-eval/nsh2/defconfig index 48081b0d302..2a97d499bda 100644 --- a/configs/stm3210e-eval/nsh2/defconfig +++ b/configs/stm3210e-eval/nsh2/defconfig @@ -697,111 +697,111 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB serial device class driver (Standard CDC ACM class) # -# CONFIG_CDCSER +# CONFIG_CDCACM # Enable compilation of the USB serial driver -# CONFIG_CDCSER_COMPOSITE +# CONFIG_CDCACM_COMPOSITE # Configure the CDC serial driver as part of a composite driver # (only if CONFIG_USBDEV_COMPOSITE is also defined) -# CONFIG_CDCSER_EP0MAXPACKET +# CONFIG_CDCACM_EP0MAXPACKET # Endpoint 0 max packet size. Default 64 -# CONFIG_CDCSER_EPINTIN +# CONFIG_CDCACM_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation. Default 2. -# CONFIG_CDCSER_EPINTIN_FSSIZE +# CONFIG_CDCACM_EPINTIN_FSSIZE # Max package size for the interrupt IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPINTIN_HSSIZE +# CONFIG_CDCACM_EPINTIN_HSSIZE # Max package size for the interrupt IN endpoint if high speed mode. # Default 64 -# CONFIG_CDCSER_EPBULKOUT +# CONFIG_CDCACM_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_CDCSER_EPBULKOUT_FSSIZE +# CONFIG_CDCACM_EPBULKOUT_FSSIZE # Max package size for the bulk OUT endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKOUT_HSSIZE +# CONFIG_CDCACM_EPBULKOUT_HSSIZE # Max package size for the bulk OUT endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_EPBULKIN +# CONFIG_CDCACM_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_CDCSER_EPBULKIN_FSSIZE +# CONFIG_CDCACM_EPBULKIN_FSSIZE # Max package size for the bulk IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKIN_HSSIZE +# CONFIG_CDCACM_EPBULKIN_HSSIZE # Max package size for the bulk IN endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_NWRREQS and CONFIG_CDCSER_NRDREQS +# CONFIG_CDCACM_NWRREQS and CONFIG_CDCACM_NRDREQS # The number of write/read requests that can be in flight. # Default 256. -# CONFIG_CDCSER_VENDORID and CONFIG_CDCSER_VENDORSTR +# CONFIG_CDCACM_VENDORID and CONFIG_CDCACM_VENDORSTR # The vendor ID code/string. Default 0x0525 and "NuttX" # 0x0525 is the Netchip vendor and should not be used in any # products. This default VID was selected for compatibility with # the Linux CDC ACM default VID. -# CONFIG_CDCSER_PRODUCTID and CONFIG_CDCSER_PRODUCTSTR +# CONFIG_CDCACM_PRODUCTID and CONFIG_CDCACM_PRODUCTSTR # The product ID code/string. Default 0xara7 and "CDC/ACM Serial" # 0xa4a7 was selected for compatibility with the Linux CDC ACM # default PID. -# CONFIG_CDCSER_RXBUFSIZE and CONFIG_CDCSER_TXBUFSIZE +# CONFIG_CDCACM_RXBUFSIZE and CONFIG_CDCACM_TXBUFSIZE # Size of the serial receive/transmit buffers. Default 256. # -CONFIG_CDCSER=n -CONFIG_CDCSER_COMPOSITE=y -#CONFIG_CDCSER_EP0MAXPACKET -#CONFIG_CDCSER_EPINTIN -#CONFIG_CDCSER_EPINTIN_FSSIZE -#CONFIG_CDCSER_EPINTIN_HSSIZE -#CONFIG_CDCSER_EPBULKOUT -#CONFIG_CDCSER_EPBULKOUT_FSSIZE -#CONFIG_CDCSER_EPBULKOUT_HSSIZE -#CONFIG_CDCSER_EPBULKIN -#CONFIG_CDCSER_EPBULKIN_FSSIZE -#CONFIG_CDCSER_EPBULKIN_HSSIZE -#CONFIG_CDCSER_NWRREQS -#CONFIG_CDCSER_NRDREQS -#CONFIG_CDCSER_VENDORID -#CONFIG_CDCSER_VENDORSTR -#CONFIG_CDCSER_PRODUCTID -#CONFIG_CDCSER_PRODUCTSTR -#CONFIG_CDCSER_RXBUFSIZE -#CONFIG_CDCSER_TXBUFSIZE +CONFIG_CDCACM=n +CONFIG_CDCACM_COMPOSITE=y +#CONFIG_CDCACM_EP0MAXPACKET +#CONFIG_CDCACM_EPINTIN +#CONFIG_CDCACM_EPINTIN_FSSIZE +#CONFIG_CDCACM_EPINTIN_HSSIZE +#CONFIG_CDCACM_EPBULKOUT +#CONFIG_CDCACM_EPBULKOUT_FSSIZE +#CONFIG_CDCACM_EPBULKOUT_HSSIZE +#CONFIG_CDCACM_EPBULKIN +#CONFIG_CDCACM_EPBULKIN_FSSIZE +#CONFIG_CDCACM_EPBULKIN_HSSIZE +#CONFIG_CDCACM_NWRREQS +#CONFIG_CDCACM_NRDREQS +#CONFIG_CDCACM_VENDORID +#CONFIG_CDCACM_VENDORSTR +#CONFIG_CDCACM_PRODUCTID +#CONFIG_CDCACM_PRODUCTSTR +#CONFIG_CDCACM_RXBUFSIZE +#CONFIG_CDCACM_TXBUFSIZE # # USB Storage Device Configuration # diff --git a/configs/stm3210e-eval/nx/defconfig b/configs/stm3210e-eval/nx/defconfig index 9970b27a590..3378a4a24b2 100644 --- a/configs/stm3210e-eval/nx/defconfig +++ b/configs/stm3210e-eval/nx/defconfig @@ -681,38 +681,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/nxlines/defconfig b/configs/stm3210e-eval/nxlines/defconfig index f21b4fbefc9..e15782a914c 100644 --- a/configs/stm3210e-eval/nxlines/defconfig +++ b/configs/stm3210e-eval/nxlines/defconfig @@ -681,38 +681,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/nxtext/defconfig b/configs/stm3210e-eval/nxtext/defconfig index 036c73ac3f7..9484f3773cc 100644 --- a/configs/stm3210e-eval/nxtext/defconfig +++ b/configs/stm3210e-eval/nxtext/defconfig @@ -681,38 +681,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/ostest/defconfig b/configs/stm3210e-eval/ostest/defconfig index ca1ea021a4e..a8d3bcb82d1 100755 --- a/configs/stm3210e-eval/ostest/defconfig +++ b/configs/stm3210e-eval/ostest/defconfig @@ -685,38 +685,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3210e-eval/usbserial/defconfig b/configs/stm3210e-eval/usbserial/defconfig index a6ebfe75687..aa8f76adfd2 100755 --- a/configs/stm3210e-eval/usbserial/defconfig +++ b/configs/stm3210e-eval/usbserial/defconfig @@ -663,111 +663,111 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration (Prolific PL2303 Emulation) # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=y -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=y +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB serial device class driver (Standard CDC ACM class) # -# CONFIG_CDCSER +# CONFIG_CDCACM # Enable compilation of the USB serial driver -# CONFIG_CDCSER_COMPOSITE +# CONFIG_CDCACM_COMPOSITE # Configure the CDC serial driver as part of a composite driver # (only if CONFIG_USBDEV_COMPOSITE is also defined) -# CONFIG_CDCSER_EP0MAXPACKET +# CONFIG_CDCACM_EP0MAXPACKET # Endpoint 0 max packet size. Default 64 -# CONFIG_CDCSER_EPINTIN +# CONFIG_CDCACM_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation. Default 2. -# CONFIG_CDCSER_EPINTIN_FSSIZE +# CONFIG_CDCACM_EPINTIN_FSSIZE # Max package size for the interrupt IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPINTIN_HSSIZE +# CONFIG_CDCACM_EPINTIN_HSSIZE # Max package size for the interrupt IN endpoint if high speed mode. # Default 64 -# CONFIG_CDCSER_EPBULKOUT +# CONFIG_CDCACM_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_CDCSER_EPBULKOUT_FSSIZE +# CONFIG_CDCACM_EPBULKOUT_FSSIZE # Max package size for the bulk OUT endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKOUT_HSSIZE +# CONFIG_CDCACM_EPBULKOUT_HSSIZE # Max package size for the bulk OUT endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_EPBULKIN +# CONFIG_CDCACM_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_CDCSER_EPBULKIN_FSSIZE +# CONFIG_CDCACM_EPBULKIN_FSSIZE # Max package size for the bulk IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKIN_HSSIZE +# CONFIG_CDCACM_EPBULKIN_HSSIZE # Max package size for the bulk IN endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_NWRREQS and CONFIG_CDCSER_NRDREQS +# CONFIG_CDCACM_NWRREQS and CONFIG_CDCACM_NRDREQS # The number of write/read requests that can be in flight. # Default 256. -# CONFIG_CDCSER_VENDORID and CONFIG_CDCSER_VENDORSTR +# CONFIG_CDCACM_VENDORID and CONFIG_CDCACM_VENDORSTR # The vendor ID code/string. Default 0x0525 and "NuttX" # 0x0525 is the Netchip vendor and should not be used in any # products. This default VID was selected for compatibility with # the Linux CDC ACM default VID. -# CONFIG_CDCSER_PRODUCTID and CONFIG_CDCSER_PRODUCTSTR +# CONFIG_CDCACM_PRODUCTID and CONFIG_CDCACM_PRODUCTSTR # The product ID code/string. Default 0xara7 and "CDC/ACM Serial" # 0xa4a7 was selected for compatibility with the Linux CDC ACM # default PID. -# CONFIG_CDCSER_RXBUFSIZE and CONFIG_CDCSER_TXBUFSIZE +# CONFIG_CDCACM_RXBUFSIZE and CONFIG_CDCACM_TXBUFSIZE # Size of the serial receive/transmit buffers. Default 256. # -CONFIG_CDCSER=n -CONFIG_CDCSER_COMPOSITE=y -#CONFIG_CDCSER_EP0MAXPACKET -#CONFIG_CDCSER_EPINTIN -#CONFIG_CDCSER_EPINTIN_FSSIZE -#CONFIG_CDCSER_EPINTIN_HSSIZE -#CONFIG_CDCSER_EPBULKOUT -#CONFIG_CDCSER_EPBULKOUT_FSSIZE -#CONFIG_CDCSER_EPBULKOUT_HSSIZE -#CONFIG_CDCSER_EPBULKIN -#CONFIG_CDCSER_EPBULKIN_FSSIZE -#CONFIG_CDCSER_EPBULKIN_HSSIZE -#CONFIG_CDCSER_NWRREQS -#CONFIG_CDCSER_NRDREQS -#CONFIG_CDCSER_VENDORID -#CONFIG_CDCSER_VENDORSTR -#CONFIG_CDCSER_PRODUCTID -#CONFIG_CDCSER_PRODUCTSTR -#CONFIG_CDCSER_RXBUFSIZE -#CONFIG_CDCSER_TXBUFSIZE +CONFIG_CDCACM=n +CONFIG_CDCACM_COMPOSITE=y +#CONFIG_CDCACM_EP0MAXPACKET +#CONFIG_CDCACM_EPINTIN +#CONFIG_CDCACM_EPINTIN_FSSIZE +#CONFIG_CDCACM_EPINTIN_HSSIZE +#CONFIG_CDCACM_EPBULKOUT +#CONFIG_CDCACM_EPBULKOUT_FSSIZE +#CONFIG_CDCACM_EPBULKOUT_HSSIZE +#CONFIG_CDCACM_EPBULKIN +#CONFIG_CDCACM_EPBULKIN_FSSIZE +#CONFIG_CDCACM_EPBULKIN_HSSIZE +#CONFIG_CDCACM_NWRREQS +#CONFIG_CDCACM_NRDREQS +#CONFIG_CDCACM_VENDORID +#CONFIG_CDCACM_VENDORSTR +#CONFIG_CDCACM_PRODUCTID +#CONFIG_CDCACM_PRODUCTSTR +#CONFIG_CDCACM_RXBUFSIZE +#CONFIG_CDCACM_TXBUFSIZE # USB Storage Device Configuration # diff --git a/configs/stm3210e-eval/usbstorage/defconfig b/configs/stm3210e-eval/usbstorage/defconfig index ad082b9d6bc..53f09060cd5 100755 --- a/configs/stm3210e-eval/usbstorage/defconfig +++ b/configs/stm3210e-eval/usbstorage/defconfig @@ -672,38 +672,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3240g-eval/dhcpd/defconfig b/configs/stm3240g-eval/dhcpd/defconfig index 0a54d9bfb9e..a0f42c3c814 100755 --- a/configs/stm3240g-eval/dhcpd/defconfig +++ b/configs/stm3240g-eval/dhcpd/defconfig @@ -857,38 +857,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3240g-eval/nettest/defconfig b/configs/stm3240g-eval/nettest/defconfig index 4c1e892056e..46b537bde48 100755 --- a/configs/stm3240g-eval/nettest/defconfig +++ b/configs/stm3240g-eval/nettest/defconfig @@ -857,38 +857,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3240g-eval/nsh/defconfig b/configs/stm3240g-eval/nsh/defconfig index 202d3e34c88..60b1204ef9a 100755 --- a/configs/stm3240g-eval/nsh/defconfig +++ b/configs/stm3240g-eval/nsh/defconfig @@ -902,38 +902,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm3240g-eval/ostest/defconfig b/configs/stm3240g-eval/ostest/defconfig index 502dacde7a2..52e20379854 100755 --- a/configs/stm3240g-eval/ostest/defconfig +++ b/configs/stm3240g-eval/ostest/defconfig @@ -819,38 +819,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm32f4discovery/nsh/defconfig b/configs/stm32f4discovery/nsh/defconfig index 6b46e992e50..bfa6f8df656 100755 --- a/configs/stm32f4discovery/nsh/defconfig +++ b/configs/stm32f4discovery/nsh/defconfig @@ -856,38 +856,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/stm32f4discovery/ostest/defconfig b/configs/stm32f4discovery/ostest/defconfig index 2aed2d64040..c28ebaa61ee 100755 --- a/configs/stm32f4discovery/ostest/defconfig +++ b/configs/stm32f4discovery/ostest/defconfig @@ -809,38 +809,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/sure-pic32mx/nsh/defconfig b/configs/sure-pic32mx/nsh/defconfig index 1b214cee693..7c40c0ee896 100644 --- a/configs/sure-pic32mx/nsh/defconfig +++ b/configs/sure-pic32mx/nsh/defconfig @@ -673,107 +673,107 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB serial device class driver (Standard CDC ACM class) # -# CONFIG_CDCSER +# CONFIG_CDCACM # Enable compilation of the USB serial driver -# CONFIG_CDCSER_EP0MAXPACKET +# CONFIG_CDCACM_EP0MAXPACKET # Endpoint 0 max packet size. Default 64 -# CONFIG_CDCSER_EPINTIN +# CONFIG_CDCACM_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation. Default 2. -# CONFIG_CDCSER_EPINTIN_FSSIZE +# CONFIG_CDCACM_EPINTIN_FSSIZE # Max package size for the interrupt IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPINTIN_HSSIZE +# CONFIG_CDCACM_EPINTIN_HSSIZE # Max package size for the interrupt IN endpoint if high speed mode. # Default 64 -# CONFIG_CDCSER_EPBULKOUT +# CONFIG_CDCACM_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_CDCSER_EPBULKOUT_FSSIZE +# CONFIG_CDCACM_EPBULKOUT_FSSIZE # Max package size for the bulk OUT endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKOUT_HSSIZE +# CONFIG_CDCACM_EPBULKOUT_HSSIZE # Max package size for the bulk OUT endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_EPBULKIN +# CONFIG_CDCACM_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_CDCSER_EPBULKIN_FSSIZE +# CONFIG_CDCACM_EPBULKIN_FSSIZE # Max package size for the bulk IN endpoint if full speed mode. # Default 64. -# CONFIG_CDCSER_EPBULKIN_HSSIZE +# CONFIG_CDCACM_EPBULKIN_HSSIZE # Max package size for the bulk IN endpoint if high speed mode. # Default 512. -# CONFIG_CDCSER_NWRREQS and CONFIG_CDCSER_NRDREQS +# CONFIG_CDCACM_NWRREQS and CONFIG_CDCACM_NRDREQS # The number of write/read requests that can be in flight. # Default 256. -# CONFIG_CDCSER_VENDORID and CONFIG_CDCSER_VENDORSTR +# CONFIG_CDCACM_VENDORID and CONFIG_CDCACM_VENDORSTR # The vendor ID code/string. Default 0x0525 and "NuttX" # 0x0525 is the Netchip vendor and should not be used in any # products. This default VID was selected for compatibility with # the Linux CDC ACM default VID. -# CONFIG_CDCSER_PRODUCTID and CONFIG_CDCSER_PRODUCTSTR +# CONFIG_CDCACM_PRODUCTID and CONFIG_CDCACM_PRODUCTSTR # The product ID code/string. Default 0xara7 and "CDC/ACM Serial" # 0xa4a7 was selected for compatibility with the Linux CDC ACM # default PID. -# CONFIG_CDCSER_RXBUFSIZE and CONFIG_CDCSER_TXBUFSIZE +# CONFIG_CDCACM_RXBUFSIZE and CONFIG_CDCACM_TXBUFSIZE # Size of the serial receive/transmit buffers. Default 256. # -CONFIG_CDCSER=n -#CONFIG_CDCSER_EP0MAXPACKET -#CONFIG_CDCSER_EPINTIN -#CONFIG_CDCSER_EPINTIN_FSSIZE -#CONFIG_CDCSER_EPINTIN_HSSIZE -#CONFIG_CDCSER_EPBULKOUT -#CONFIG_CDCSER_EPBULKOUT_FSSIZE -#CONFIG_CDCSER_EPBULKOUT_HSSIZE -#CONFIG_CDCSER_EPBULKIN -#CONFIG_CDCSER_EPBULKIN_FSSIZE -#CONFIG_CDCSER_EPBULKIN_HSSIZE -#CONFIG_CDCSER_NWRREQS -#CONFIG_CDCSER_NRDREQS -#CONFIG_CDCSER_VENDORID -#CONFIG_CDCSER_VENDORSTR -#CONFIG_CDCSER_PRODUCTID -#CONFIG_CDCSER_PRODUCTSTR -#CONFIG_CDCSER_RXBUFSIZE -#CONFIG_CDCSER_TXBUFSIZE +CONFIG_CDCACM=n +#CONFIG_CDCACM_EP0MAXPACKET +#CONFIG_CDCACM_EPINTIN +#CONFIG_CDCACM_EPINTIN_FSSIZE +#CONFIG_CDCACM_EPINTIN_HSSIZE +#CONFIG_CDCACM_EPBULKOUT +#CONFIG_CDCACM_EPBULKOUT_FSSIZE +#CONFIG_CDCACM_EPBULKOUT_HSSIZE +#CONFIG_CDCACM_EPBULKIN +#CONFIG_CDCACM_EPBULKIN_FSSIZE +#CONFIG_CDCACM_EPBULKIN_HSSIZE +#CONFIG_CDCACM_NWRREQS +#CONFIG_CDCACM_NRDREQS +#CONFIG_CDCACM_VENDORID +#CONFIG_CDCACM_VENDORSTR +#CONFIG_CDCACM_PRODUCTID +#CONFIG_CDCACM_PRODUCTSTR +#CONFIG_CDCACM_RXBUFSIZE +#CONFIG_CDCACM_TXBUFSIZE # # USB Storage Device Configuration diff --git a/configs/sure-pic32mx/ostest/defconfig b/configs/sure-pic32mx/ostest/defconfig index 3e968210031..63b4c4ed2ef 100644 --- a/configs/sure-pic32mx/ostest/defconfig +++ b/configs/sure-pic32mx/ostest/defconfig @@ -614,38 +614,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/teensy/hello/defconfig b/configs/teensy/hello/defconfig index 22eb080c4ea..99f7232e9a1 100644 --- a/configs/teensy/hello/defconfig +++ b/configs/teensy/hello/defconfig @@ -536,38 +536,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/teensy/nsh/defconfig b/configs/teensy/nsh/defconfig index 40bd7d721e7..745860dfb40 100755 --- a/configs/teensy/nsh/defconfig +++ b/configs/teensy/nsh/defconfig @@ -565,38 +565,38 @@ CONFIG_USBHOST_ISOC_DISABLE=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/teensy/usbstorage/defconfig b/configs/teensy/usbstorage/defconfig index 75d92a06c5d..c9521c3b7e2 100755 --- a/configs/teensy/usbstorage/defconfig +++ b/configs/teensy/usbstorage/defconfig @@ -569,38 +569,38 @@ CONFIG_USBHOST_ISOC_DISABLE=y # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/twr-k60n512/nsh/defconfig b/configs/twr-k60n512/nsh/defconfig index c5fcce6c6f1..0dab4d4c6c8 100644 --- a/configs/twr-k60n512/nsh/defconfig +++ b/configs/twr-k60n512/nsh/defconfig @@ -699,38 +699,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/twr-k60n512/ostest/defconfig b/configs/twr-k60n512/ostest/defconfig index 7b100817261..4b2cf9a10a5 100644 --- a/configs/twr-k60n512/ostest/defconfig +++ b/configs/twr-k60n512/ostest/defconfig @@ -697,38 +697,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/us7032evb1/nsh/defconfig b/configs/us7032evb1/nsh/defconfig index 31ac3eccabb..76495ade01e 100644 --- a/configs/us7032evb1/nsh/defconfig +++ b/configs/us7032evb1/nsh/defconfig @@ -439,37 +439,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/us7032evb1/ostest/defconfig b/configs/us7032evb1/ostest/defconfig index bc9c2052552..397a80690b5 100644 --- a/configs/us7032evb1/ostest/defconfig +++ b/configs/us7032evb1/ostest/defconfig @@ -439,37 +439,37 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=5 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=5 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration diff --git a/configs/vsn/nsh/defconfig b/configs/vsn/nsh/defconfig index 9d21c4b8645..f06b915657e 100755 --- a/configs/vsn/nsh/defconfig +++ b/configs/vsn/nsh/defconfig @@ -663,38 +663,38 @@ CONFIG_USBDEV_TRACE_NRECORDS=128 # # USB Serial Device Configuration # -# CONFIG_USBSER +# CONFIG_PL2303 # Enable compilation of the USB serial driver -# CONFIG_USBSER_EPINTIN +# CONFIG_PL2303_EPINTIN # The logical 7-bit address of a hardware endpoint that supports # interrupt IN operation -# CONFIG_USBSER_EPBULKOUT +# CONFIG_PL2303_EPBULKOUT # The logical 7-bit address of a hardware endpoint that supports # bulk OUT operation -# CONFIG_USBSER_EPBULKIN +# CONFIG_PL2303_EPBULKIN # The logical 7-bit address of a hardware endpoint that supports # bulk IN operation -# # CONFIG_USBSER_NWRREQS and CONFIG_USBSER_NRDREQS +# # CONFIG_PL2303_NWRREQS and CONFIG_PL2303_NRDREQS # The number of write/read requests that can be in flight -# CONFIG_USBSER_VENDORID and CONFIG_USBSER_VENDORSTR +# CONFIG_PL2303_VENDORID and CONFIG_PL2303_VENDORSTR # The vendor ID code/string -# CONFIG_USBSER_PRODUCTID and CONFIG_USBSER_PRODUCTSTR +# CONFIG_PL2303_PRODUCTID and CONFIG_PL2303_PRODUCTSTR # The product ID code/string -# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE +# CONFIG_PL2303_RXBUFSIZE and CONFIG_PL2303_TXBUFSIZE # Size of the serial receive/transmit buffers # -CONFIG_USBSER=n -CONFIG_USBSER_EPINTIN=1 -CONFIG_USBSER_EPBULKOUT=2 -CONFIG_USBSER_EPBULKIN=3 -CONFIG_USBSER_NWRREQS=4 -CONFIG_USBSER_NRDREQS=4 -CONFIG_USBSER_VENDORID=0x067b -CONFIG_USBSER_PRODUCTID=0x2303 -CONFIG_USBSER_VENDORSTR="Nuttx" -CONFIG_USBSER_PRODUCTSTR="USBdev Serial" -CONFIG_USBSER_RXBUFSIZE=512 -CONFIG_USBSER_TXBUFSIZE=512 +CONFIG_PL2303=n +CONFIG_PL2303_EPINTIN=1 +CONFIG_PL2303_EPBULKOUT=2 +CONFIG_PL2303_EPBULKIN=3 +CONFIG_PL2303_NWRREQS=4 +CONFIG_PL2303_NRDREQS=4 +CONFIG_PL2303_VENDORID=0x067b +CONFIG_PL2303_PRODUCTID=0x2303 +CONFIG_PL2303_VENDORSTR="Nuttx" +CONFIG_PL2303_PRODUCTSTR="USBdev Serial" +CONFIG_PL2303_RXBUFSIZE=512 +CONFIG_PL2303_TXBUFSIZE=512 # # USB Storage Device Configuration