Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.

USB baud rate

0 votes
How can I change the baud rate for the USB interface? Will serial:baudrate=9600 in the param.cfg file do it, or is that only for the TTL serial line?
asked Mar 15, 2019 in User questions by kinahawi (220 points)
edited Mar 15, 2019 by kinahawi

2 Answers

0 votes
As far as I understand it, the baudrate parameter on a USB interface has no effect. Data will still flow at 480 Mbps no matter what.

indeed serial:baudrate is for the hardware serial port

the corresponding param for serial-over-USB port would be usbserial:baudrate but again I believe changing this has no effect.
answered Mar 19, 2019 by JeVois (46,580 points)
0 votes
In general, the baud rate should be set by any app that uses the serial port. This is done with the SetCommState call, but of course the user interface varies from app to app.

None of this has anything to do with whether the serial port is built in, connected via USB, or something else.
answered May 9, 2019 by jenniferT (140 points)
Yes, you are right, this is how you set it (on Windows; you use an ioctl on Linux). But I still believe that this has no effect when doing serial over USB. You can set to 9600 bps but the USB data flow will still run at 480 Mbps, and I doubt that there is any kind of throttling mechanism in the kernel to reduce the number of USB packets that get sent over the 480 Mbps link so as to try to approximate an effective 9600 bps throughput. But I may be wrong as this is untested on our end.
...