You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while trying to understand how the InfiniteNoise driver works, I found that the ftdi_set_baudrate()-method in libftdi applies a factor of 4 to the set baudrate when bitbang-mode is enabled (cf. libftdi-repository). So in my understanding the driver first has to call ftdi_set_bitmode() and then ftdi_set_baudrate().
You're probably right. I originally picked the baud rate experimentally,
finding a value that worked well, and I was looking at the big-bang toggle
rate, and did not worry about what the baud rate was set to. The current
square waves from the FTDI chip are correct, but there may be a factor of 4
difference in the baud rate and what we see on the oscilloscope.
Hi Bill,
while trying to understand how the InfiniteNoise driver works, I found that the ftdi_set_baudrate()-method in libftdi applies a factor of 4 to the set baudrate when bitbang-mode is enabled (cf. libftdi-repository). So in my understanding the driver first has to call ftdi_set_bitmode() and then ftdi_set_baudrate().
Currently in the code first the ftdi_set_baudrate() and then the ftdi_set_bitmode()-method is called.
Am I missing something?
Tobias
The text was updated successfully, but these errors were encountered: