More name changes: USBSER->PL2303 CDCSER->CDCACM
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4337 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
eed783884e
commit
d98c5bc1df
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -647,11 +647,11 @@ Where <subdir> 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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -773,11 +773,11 @@ Where <subdir> 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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user