CDC/ACM: Fix a bad default value in last commit

This commit is contained in:
Gregory Nutt 2015-12-08 07:33:49 -06:00
parent 513cc08c7f
commit 4a7e28ba96
2 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 35ccaa2c6f22b1a4b528cd159ba522f1a19e6d50 Subproject commit c5d86a886c2f384f427b2dab78de610e8076c680

View File

@ -261,12 +261,12 @@ config PL2303_RXBUFSIZE
config PL2303_TXBUFSIZE config PL2303_TXBUFSIZE
int "Transmit buffer size" int "Transmit buffer size"
default 767 if USBDEV_DUALSPEED default 769 if USBDEV_DUALSPEED
default 193 if !USBDEV_DUALSPEED default 193 if !USBDEV_DUALSPEED
---help--- ---help---
Size of the serial transmit buffers. The actual amount of data that Size of the serial transmit buffers. The actual amount of data that
can be held in the buffer is this number minus one due to the way can be held in the buffer is this number minus one due to the way
that the circular buffer is managed. So a TX buffer size of 767 that the circular buffer is managed. So a TX buffer size of 769
will hold one request of size 768; a buffer size of 193 will hold will hold one request of size 768; a buffer size of 193 will hold
two requests of size 96 bytes. two requests of size 96 bytes.
@ -450,12 +450,12 @@ config CDCACM_RXBUFSIZE
config CDCACM_TXBUFSIZE config CDCACM_TXBUFSIZE
int "Transmit buffer size" int "Transmit buffer size"
default 767 if USBDEV_DUALSPEED default 769 if USBDEV_DUALSPEED
default 193 if !USBDEV_DUALSPEED default 193 if !USBDEV_DUALSPEED
---help--- ---help---
Size of the serial transmit buffers. The actual amount of data that Size of the serial transmit buffers. The actual amount of data that
can be held in the buffer is this number minus one due to the way can be held in the buffer is this number minus one due to the way
that the circular buffer is managed. So a TX buffer size of 767 that the circular buffer is managed. So a TX buffer size of 769
will hold one request of size 768; a buffer size of 193 will hold will hold one request of size 768; a buffer size of 193 will hold
two requests of size 96 bytes. two requests of size 96 bytes.