pyserial 3.4 with Python 2.17.13 under Windows 10
BTW, it works fine under Windows, but not in Ubuntu
reading from socket with timeout=None still causes TypeError
pySerial 3.0a0
OSX has it own list_ports function for some time current implementation at https...
cu device support for serial.tools.list_ports.comports()
the current implementation at https://github.com/pyserial/pyserial returns an info...
Add dict output to list_ports tool
Add a licensecheck-compatible license header to source files.
the current sources at https://github.com/pyserial/pyserial include an SPDX header,...
port_publisher requires avahi
please try v3.0a0 from https://github.com/pyserial/pyserial/releases where Python...
Pyserial 2.7 cannot be installed on a Python 3.3 installation
pyserial 2.7 installation failure on python 3.3 / Windows 7
please try v3.0a0 from https://github.com/pyserial/pyserial/releases where Python...
No setDTR initial state before connecting for POSIX
setting the controll lines before opening is now possible ony posix too, however,...
release a new version
ongoing, see https://github.com/pyserial/pyserial prerelease v3.0a0 was made
SocketSerial can't read when timeout is 0
see [#185]
patch 34 provided a workaround for that. i've integrated that over here: https:/...
port_publisher requires avahi
port_publisher requires avahi
thanks, committed over here: https://github.com/pyserial/pyserial
improve support for FreeBSD
improve support for FreeBSD
Iterestingly it appears that if you call cat on the tty twice pyserial will resume...
I am having the same error on OS X 10.10.5 python 2.7.10 pyserial 2.7, it seems to...
SocketSerial can't read when timeout is 0
the win32 implementation allows to call setRTS/setDTR before opening the port. e.g....
comDCB.fDtrControl always 1
list_ports_posix not working properly for Cygwin
fix committed to https://github.com/pyserial/pyserial
updated implementation at https://github.com/pyserial/pyserial i think that should...
IPv6 support for network connections
cu device support for serial.tools.list_ports.comports()
to which platform would that apply? OSX? posix in general? linux, OSX (and windows)...
Support BlueTooth serial port discovery on Linux
RS485 Support
immplementation added to https://github.com/pyserial/pyserial instead of the rts...
RS485 Support
fix applied to https://github.com/pyserial/pyserial
Support BlueTooth serial port discovery on Linux
Module list_ports for linux should include the product information as description.
Status: pending --> closed
Status: pending --> closed
Status: pending --> closed
SocketSerial.read() never returns data when timeout==0
similar fix applied to https://github.com/pyserial/pyserial
fix comitted to https://github.com/pyserial/pyserial
Missing import for flush() on windows
pySerial cuts off text in file
also ser.inWaiting() may be unreliable to detect the end of a data stream. the available...
missing "import time" in serialwin32.py
fix comitted to https://github.com/pyserial/pyserial
pyserial expects bytes. any sort of encoding should be handler in the users code,...
Python 3 compatibility
Python3 RFC2217 Support
solved it a bit differently updated a version at https://github.com/pyserial/pyserial...
Python 3.4 for rfc2217 is not supported
there were a few details to solve.. updated a version at https://github.com/pyse...
RFC2217 connections always fail
thank you very much, all changes seem to be useful. comitted to https://github.c...
Improvements to port_publisher.py example
yeah, all keys were checked, updated the code to only check existing keys. comitted...
applySettingsDict() throws an error if the settings dictionary is not complete
TypeError in SerialException
fixed in trunk where the exeption is handled differently for python 2.x and python...
Make USB information work in python 3.4 and 2.7
comitted to https://github.com/pyserial/pyserial
comitted to https://github.com/pyserial/pyserial
list_ports_osx.py Python3 compatibility
list_ports_posix.py failed to determine devnum of usb cdc acm device
the current code reads the devnum according to this suggestion, will be fixed in...
Fails on Windows 64-bit: "The handle is invalid"
The 3.x series (https://github.com/pyserial/pyserial) will support Python 3 natively....
Python3 error handling
The 3.x series (https://github.com/pyserial/pyserial) will support Python 3 natively....
Getting PySerial 2.7 working under Windows Python 3.4
SocketSerial.read() never returns data when timeout==0
Sorry about the lost formatting, I thought (wrongly) that I could edit it after posting....
Getting PySerial 2.7 working under Windows Python 3.4
Thanks Trent and Antoine. This is really helpful info. I have worked around my problem...
Missing import for flush() on windows
I confirm this problem, as I had exactly the same one (with Windows 8.1 and Python...
Disregard; was using old version of pyserial left from 32-bit Python install.
Fails on Windows 64-bit: "The handle is invalid"
Python3 error handling
My guess is that you're using Windows. This is caused by setTimeout() calling _reconfigurePort()...
Here is the patch to fix the issue: --- a/usr/lib/python2.7/site-packages/serial/tools/list_ports_posix.py...
Here is the patch to fix the issue: --- a/usr/lib/python2.7/site-packages/serial/tools/list_ports_posix.py...
A suggested method is to cat the "devnum" file under the sys/devices/pci0000:00/0000:00:14.0/usb3/3-11...
list_ports_posix.py failed to determine devnum of usb cdc acm device
This patch and [#38] are the same problem with two different patches.
pySerial cuts off text in file
you are opening the serial port without flow control. this means that when the internal...
pySerial cuts off text in file
Python3 RFC2217 Support
also in _telnet_read_loop(self) change all suboption.append(IAC) to suboptin.app...