<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>
<div>Hi Dan,</div>

<div>&nbsp;</div>

<div>&gt; &gt; +debug = True<br/>
&gt;<br/>
&gt; You don&#39;t want to leave this on for all chirp users.</div>

<div>&nbsp;</div>

<div>you are right, this was a leftover from debugging, I will deactivate it again.</div>

<div>&nbsp;</div>

<div>&gt; These being module-level means they&#39;ll live for the lifetime of the<br/>
&gt; running process.</div>

<div>&nbsp;</div>

<div>That&acute;s intentional: Once the driver detects that there are troubles with the timing, its best to memorize that (instead of again failing for each up- and download attempt).<br/>
This is my first time hacking in python - so if there is a better solution for achieving that, let me know.</div>

<div>&nbsp;</div>

<div>&gt; 10ms inter-byte latency is crazy high. I also don&#39;t like making this<br/>
&gt; different on different platforms, even if we&#39;re doing it in response to<br/>
&gt; a short read.</div>

<div>&nbsp;</div>

<div>I agree that this is not the best solution, but it&acute;s worth to mention:<br/>
- as Pavel Milanes found out, the inter-byte delay is exactly what the OEM-Software is doing ( http://chirp.danplanet.com/issues/3993#note-24 ), so obviously even the manufacturer knows that their radios are not able to handle 9600 baud (and has no better solution to deal with that error)<br/>
- we are not doing it different on different platforms (this was the first approach), but changed to: detect &quot;short read&quot; or &quot;invalid-header&quot;-errors, and slow down only then. This avoids the artificial delay with radios that are fast enough to handle pyserial on linux, and on the other hand fix the error also on windows-versions. (Where it may happen as well, but only very rarely).<br/>
- The 10ms are indeed quite long. In a earlier version of this patch only 5ms were used, and this was tested by Jim Unroe and other users on 5 different radios ( http://chirp.danplanet.com/issues/3993#note-22 ) and reported as OK. However, Pavel argued to use 10ms, to be safe. (The comment in the sources is his ;-) )<br/>
I just retested on my setup (Ubuntu 16.4 and KT-8900R), that 2ms is sufficient in most cases (1ms is BTW too short). So from my point of view we could start with 3ms, and finetune that in case that any new errors are reported.</div>

<div>&nbsp;</div>

<div>&gt;<br/>
&gt; I would rather we try things like writing eight bytes followed by a<br/>
&gt; delay or something like that.</div>

<div>&nbsp;</div>

<div>Adding the delay only every X bytes was what I tried first, however it did not work.</div>

<div>&nbsp;</div>

<div>&gt; This will spam everyone&#39;s logs with one line for each byte of the memory<br/>
&gt; map. That&#39;s not reasonable, IMHO.</div>

<div>&nbsp;</div>

<div>It is not that evil as you might think:<br/>
It happens only if debug == True, and even in that case it is not per byte, but per TX_BLOCK_SIZE.<br/>
However, I share&nbsp; your concerns. I would propose adding the &quot;delayed&quot;-Information in the same line as the hex-trace (which was already there ...):<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # DEBUG<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if debug is True:<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if NEEDS_DELAY:<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LOG.debug(&quot;==&gt; (%d) bytes (DELAYED):&#92;n&#92;n%s&quot; %<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (len(data), util.hexprint(data)))<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else:<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LOG.debug(&quot;==&gt; (%d) bytes:&#92;n&#92;n%s&quot; %<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (len(data), util.hexprint(data)))</div>

<div>&nbsp;</div>

<div>&gt; Stray whitespace damage here.</div>

<div><br/>
My I ask what exactly do you mean? (did I already mention that I am completely new to python and this project? ;-) )</div>

<div>&nbsp;</div>

<div>&gt; These hunks appear unrelated to the rest of the change?</div>

<div>&nbsp;</div>

<div>Oops ... This must be a fix by Pavel for some other issue (I dont even know which one), which I accidentally took over, when including his proposals changes ... I will remove it from this patch.</div>

<div><br/>
What is the correct process to add the fixed patch? Should I mail it as a reply to this thread? Or should I create a new patch using mercurial? (which will lead to a new thread in the mailing-list?)</div>

<div>&nbsp;</div>

<div>73,<br/>
Michael</div>

<div>&nbsp;</div>
</div></div></body></html>