<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyserial-git.git/serial, branch master</title>
<subtitle>github.com: pyserial/pyserial.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/'/>
<entry>
<title>feat(miniterm): handle SIGINT on POSIX</title>
<updated>2021-10-02T02:58:22+00:00</updated>
<author>
<name>Chris Liechti</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-10-02T02:58:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=f7e39f06bd8365db331288928ccd9c47e7dd6a60'/>
<id>f7e39f06bd8365db331288928ccd9c47e7dd6a60</id>
<content type='text'>
fixes #570
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #570
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #584 from luzpaz/typos</title>
<updated>2021-10-02T00:08:32+00:00</updated>
<author>
<name>zsquareplusc</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-10-02T00:08:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=babdfdc5490a636d73195b6118d79c6b29ddd46e'/>
<id>babdfdc5490a636d73195b6118d79c6b29ddd46e</id>
<content type='text'>
docs: Fix misc. documentation and source comment typos</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
docs: Fix misc. documentation and source comment typos</pre>
</div>
</content>
</entry>
<entry>
<title>feat(list_ports): add gadget serial ports ttyGS*</title>
<updated>2021-10-01T23:59:09+00:00</updated>
<author>
<name>Chris Liechti</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-10-01T23:59:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=d5bfd55418a27fe384912663ddfb930c4d00c014'/>
<id>d5bfd55418a27fe384912663ddfb930c4d00c014</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #496 from ckielstra/master</title>
<updated>2021-10-01T23:43:32+00:00</updated>
<author>
<name>zsquareplusc</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-10-01T23:43:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=baa7c78a138c5b4fa2803d3caa82ee7f30f6683e'/>
<id>baa7c78a138c5b4fa2803d3caa82ee7f30f6683e</id>
<content type='text'>
fix(serialposix): Add support for setting a custom baudrate on the MIPS platform</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix(serialposix): Add support for setting a custom baudrate on the MIPS platform</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #587 from Finwood/master</title>
<updated>2021-10-01T01:27:12+00:00</updated>
<author>
<name>zsquareplusc</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-10-01T01:27:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=adf92098ae59774a1edce65924062872773f46b5'/>
<id>adf92098ae59774a1edce65924062872773f46b5</id>
<content type='text'>
fix: Redirect miniterm's port prompt to stderr instead of stdout, like all other messages</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: Redirect miniterm's port prompt to stderr instead of stdout, like all other messages</pre>
</div>
</content>
</entry>
<entry>
<title>Fix duplicate comports listed with list_ports(include_links=True)</title>
<updated>2021-09-02T21:11:29+00:00</updated>
<author>
<name>Madis Martin Lutter</name>
<email>madislutter@gmail.com</email>
</author>
<published>2021-09-02T21:11:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=b5c0a9922641974ccfdefcdc9130e39481556b9c'/>
<id>b5c0a9922641974ccfdefcdc9130e39481556b9c</id>
<content type='text'>
In case there are any symlinks which name matches any of the previously
checked globs then list_ports(include_links=True) will report them twice.
For example if there's a symlink named /dev/ttyUSB_mylink then it would
appear twice.

The problem is fixed by storing the found paths in a set instead of a list.
Documentation at https://pythonhosted.org/pyserial/tools.html#module-serial.tools.list_ports
already states that "Items are returned in no particular order" so there's
no need to do extra sorting before returning the results.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In case there are any symlinks which name matches any of the previously
checked globs then list_ports(include_links=True) will report them twice.
For example if there's a symlink named /dev/ttyUSB_mylink then it would
appear twice.

The problem is fixed by storing the found paths in a set instead of a list.
Documentation at https://pythonhosted.org/pyserial/tools.html#module-serial.tools.list_ports
already states that "Items are returned in no particular order" so there's
no need to do extra sorting before returning the results.
</pre>
</div>
</content>
</entry>
<entry>
<title>Redirect Minicom's Port Prompt to stderr</title>
<updated>2021-06-10T21:12:51+00:00</updated>
<author>
<name>Lasse Fröhner</name>
<email>lasse@starcopter.com</email>
</author>
<published>2021-06-10T21:12:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=56b0a65d16dca3e6d50a641f18a3ca9a17a58565'/>
<id>56b0a65d16dca3e6d50a641f18a3ca9a17a58565</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>spy: option to write to log instead of file/stdout</title>
<updated>2021-05-22T22:02:32+00:00</updated>
<author>
<name>Chris Liechti</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-05-22T22:02:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=9e3b4f364aa50bd62d3044ed0d5221bd42a1c1f4'/>
<id>9e3b4f364aa50bd62d3044ed0d5221bd42a1c1f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix misc. documentation and source comment typos</title>
<updated>2021-05-14T12:22:24+00:00</updated>
<author>
<name>luz paz</name>
<email>luzpaz@users.noreply.github.com</email>
</author>
<published>2021-05-14T12:22:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=f411ba382f553326c50b2dbd3e512d7f096b981f'/>
<id>f411ba382f553326c50b2dbd3e512d7f096b981f</id>
<content type='text'>
Found via `codespell -q 3 -L ba,ser,wont`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found via `codespell -q 3 -L ba,ser,wont`</pre>
</div>
</content>
</entry>
<entry>
<title>miniterm: make integration easier, add serial_instance argument</title>
<updated>2021-05-13T22:44:29+00:00</updated>
<author>
<name>Chris Liechti</name>
<email>cliechti@gmx.net</email>
</author>
<published>2021-05-13T22:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyserial-git.git/commit/?id=bce419352b22b2605df6c2158f3e20a15b8061cb'/>
<id>bce419352b22b2605df6c2158f3e20a15b8061cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
