<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body><div><div style="font-family: Calibri,sans-serif; font-size: 11pt;">Is that issue still happening, or is it fixed?</div></div><div dir="ltr"><hr><span style="font-family: Calibri,sans-serif; font-size: 11pt; font-weight: bold;">From: </span><span style="font-family: Calibri,sans-serif; font-size: 11pt;"><a href="mailto:rock.unroe@gmail.com">Jim Unroe</a></span><br><span style="font-family: Calibri,sans-serif; font-size: 11pt; font-weight: bold;">Sent: </span><span style="font-family: Calibri,sans-serif; font-size: 11pt;">‎10/‎14/‎2015 2:21 AM</span><br><span style="font-family: Calibri,sans-serif; font-size: 11pt; font-weight: bold;">To: </span><span style="font-family: Calibri,sans-serif; font-size: 11pt;"><a href="mailto:stickpatrick@gmail.com">Patrick Lang</a>; <a href="mailto:chirp_devel@intrepid.danplanet.com">chirp-devel</a></span><br><span style="font-family: Calibri,sans-serif; font-size: 11pt; font-weight: bold;">Subject: </span><span style="font-family: Calibri,sans-serif; font-size: 11pt;">Re: [chirp_devel] [patch modified] doesn't recognize multiplecommports in Win 7 - issue #2783</span><br><br></div>Apparently another side affect of this issue has been that when there<br>are mmultiple com ports available, only 1 port would in the list to<br>choose from. I plugged in 5 USB-to-Serial cables and all 5 COM ports<br>were in the list.<br><br>Jim KC9HI<br><br>On Wed, Oct 14, 2015 at 1:33 AM, Patrick Lang via chirp_devel<br>&lt;chirp_devel@intrepid.danplanet.com&gt; wrote:<br>&gt; I modified the registry to make one of my ftdi cables show up on com14. Both<br>&gt; the old port (com4) is listed since it was the last used, along with the new<br>&gt; port number com14. Com14 works in chirp to download my radio as expected on<br>&gt; win10 x64. Seems ok to me!<br>&gt; ________________________________<br>&gt; From: Dan Smith via chirp_devel<br>&gt; Sent: ‎10/‎12/‎2015 1:37 PM<br>&gt; To: Alex K; chirp_devel@intrepid.danplanet.com<br>&gt; Subject: Re: [chirp_devel] [patch modified] doesn't recognize multiple<br>&gt; commports in Win 7 - issue #2783<br>&gt;<br>&gt;&gt; diff -r f8d7a8b1f4f5 -r 853c2aa66578 chirp/platform.py<br>&gt;&gt; --- a/chirp/platform.py Thu Oct 08 12:02:04 2015 +0300<br>&gt;&gt; +++ b/chirp/platform.py Sun Oct 11 10:50:10 2015 +0300<br>&gt;&gt; @@ -29,7 +29,7 @@<br>&gt;&gt;<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ports = []<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for i in range(1, 257):<br>&gt;&gt; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; portname = "COM%i" % i<br>&gt;&gt; +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; portname = "\\\\.\\COM%i" % i<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try:<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mode = win32con.GENERIC_READ | win32con.GENERIC_WRITE<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port = \<br>&gt;&gt; @@ -40,6 +40,8 @@<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; win32con.OPEN_EXISTING,<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0,<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; None)<br>&gt;&gt; +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if portname.startswith("\\"):<br>&gt;&gt; +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; portname = portname[4:]<br>&gt;<br>&gt; Won't this cause us to detect them, but then fail to open them? Or is<br>&gt; the failure just in the detection code above?<br>&gt;<br>&gt; --Dan<br>&gt; _______________________________________________<br>&gt; chirp_devel mailing list<br>&gt; chirp_devel@intrepid.danplanet.com<br>&gt; http://intrepid.danplanet.com/mailman/listinfo/chirp_devel<br>&gt; Developer docs: http://chirp.danplanet.com/projects/chirp/wiki/Developers<br>&gt;<br>&gt; _______________________________________________<br>&gt; chirp_devel mailing list<br>&gt; chirp_devel@intrepid.danplanet.com<br>&gt; http://intrepid.danplanet.com/mailman/listinfo/chirp_devel<br>&gt; Developer docs: http://chirp.danplanet.com/projects/chirp/wiki/Developers<br></body></html>