Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
4a7e28ba
Commit
4a7e28ba
authored
9 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
CDC/ACM: Fix a bad default value in last commit
parent
513cc08c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configs
+1
-1
1 addition, 1 deletion
configs
drivers/usbdev/Kconfig
+4
-4
4 additions, 4 deletions
drivers/usbdev/Kconfig
with
5 additions
and
5 deletions
configs
@
c5d86a88
Subproject commit
35ccaa2c6f22b1a4b528cd159ba522f1a19e6d5
0
Subproject commit
c5d86a886c2f384f427b2dab78de610e8076c68
0
This diff is collapsed.
Click to expand it.
drivers/usbdev/Kconfig
+
4
−
4
View file @
4a7e28ba
...
...
@@ -261,12 +261,12 @@ config PL2303_RXBUFSIZE
config PL2303_TXBUFSIZE
int "Transmit buffer size"
default 76
7
if USBDEV_DUALSPEED
default 76
9
if USBDEV_DUALSPEED
default 193 if !USBDEV_DUALSPEED
---help---
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
that the circular buffer is managed. So a TX buffer size of 76
7
that the circular buffer is managed. So a TX buffer size of 76
9
will hold one request of size 768; a buffer size of 193 will hold
two requests of size 96 bytes.
...
...
@@ -450,12 +450,12 @@ config CDCACM_RXBUFSIZE
config CDCACM_TXBUFSIZE
int "Transmit buffer size"
default 76
7
if USBDEV_DUALSPEED
default 76
9
if USBDEV_DUALSPEED
default 193 if !USBDEV_DUALSPEED
---help---
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
that the circular buffer is managed. So a TX buffer size of 76
7
that the circular buffer is managed. So a TX buffer size of 76
9
will hold one request of size 768; a buffer size of 193 will hold
two requests of size 96 bytes.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment