<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Sep 11, 2017 at 11:13 AM, Jef Driesen <span dir="ltr"><<a href="mailto:jef@libdivecomputer.org" target="_blank">jef@libdivecomputer.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 2017-09-11 16:15, John Van Ostrand wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Mon, Sep 11, 2017 at 5:22 AM, Jef Driesen <<a href="mailto:jef@libdivecomputer.org" target="_blank">jef@libdivecomputer.org</a>><br>
wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 2017-09-06 22:02, John Van Ostrand wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The parameters used with the FTDI USB serial port drivers didn't<br>
work well with directly with libftdi1. The new baud rate results<br>
in the same effective baud rates for both.<br>
<br>
</blockquote>
<br>
What's the effective baudrate? Why don't you just use that effective<br>
baudrate, instead of 850000? Now the baudrate change looks rather arbitrary<br>
to me.<br>
<br>
Other than that, the changes look good to me. For the retrying, I'll<br>
restore the old retry function (see commit b3d2c603ddec9758fb36706bbde46c<wbr>e23ca9f0ed)<br>
because it handles fatal errors better.<br>
</blockquote>
<br>
I was working with FTDI to get mobile communications to work and high-speed<br>
data was coming back with bit 7 set on all bytes. While I was tracking that<br>
down I noticed that at the USB packet level the baud rate command was<br>
different, there was a different clock divisor for the custom baud rate.<br>
Clearly the ftdi_sio kernel module that translates serial commands to FTDI<br>
was translating baud differently than the libftdi1 library routines. I<br>
suspect either the logic is different or one of them is wrong about which<br>
FTDI chip it's talking to. I didn't debug deeper than that.  I translated<br>
the working divisor back to a baud rate which turned out to be<br>
857,143 baud. I expect the actual baud rate is tied to the clock on the CPU<br>
of the dive computer, we don't know what that is, so stating 857,143 as the<br>
baud rate suggests accuracy. I figured 850,000 was within the 5% required<br>
by the libftdi1 logic, visually more reasonable and about as wrong as<br>
857,143.<br>
</blockquote>
<br></div></div>
This kind of info helps understanding the reason behind the change, so why not add it to the commit message? In a couple of months or years you probably won't remember either :-)<span class=""><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'll give that commit a try to see how it works. I know that one of the<br>
problems I was having was that after a baud rate change a heartbeat byte<br>
would be received at the wrong baud rate and show up as a 0xFE, that's the<br>
only case that is a permanent failure if we used that commit. I'm starting<br>
to wonder if the serial flush command given to the FTDI chip is working, or<br>
if the DC ignores the baud rate change some times.<br>
</blockquote>
<br></span>
If you change the baudrate while data is arriving, then it might be that some data was still read with the old baudrate (because it was already sitting in the driver receive queue).<br>
<br></blockquote><div> </div><div>That's what I thought, but a flush after the baud rate change didn't seem to make it less likely.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
With fatal errors, I was referring to errors reported by operating system and/or driver. If for example the write call fails because the connection is down (usb cable unplugged, bluetooth connection lost) or some other serious I/O error happened, then there is no point in retrying. In that case you want to bailout as soon as possible. Typically only for errors at the communication protocol level (e.g. timeouts, corrupt data packets, etc) retrying helps. Those correspond to the DC_STATUS_TIMEOUT and DC_STATUS_PROTOCOL error codes. Everything else is pretty much fatal.</blockquote><div><br></div><div>Ahh, I see it now. That commit should work fine.</div></div><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>John Van Ostrand<br></div><div>At large on sabbatical<br></div><br></div></div>
</div></div>