zsquareplusc

Results 55 comments of zsquareplusc

That is not easy to replace... I removed the solution that used `select` because it interfered with the buffering in the io modules buffered text handler. A way around may...

it was in conjunction with escape sequences, e.g. from cursor keys. see #174 i also looked at `poll` (w/o `e`) but that is not implemented in at least one popular...

re timeout, miniterm used to use that on the serial port to check the alive flag from time to time. but that gives a CPU load >0.0% even if it...

i've added a note about the raspi tho the FAQ. the original question was not on a raspi though, but maybe that USB device did not support those parity settings....

No, there isn't anything implemented for Windows. Windows seems to not provide a parallel port API at all, just some higher level printer port API. Therefore the implementation on Windows...

Configured Travis CI, though there are not really any useful tests yet. As there is no hardware available on the CI servers, the question is what useful tests can be...

if you want to have control over the RTS and DTR pins, *do not* use the `rtscts` keyword parameter when creating the `Serial` instance, because that option enables hardware flow...

This does not seem to be a feature that is usable across different platforms that pySerial supports. Working with PTY is already possible, e.g. see this [test](https://github.com/pyserial/pyserial/blob/master/test/test_pty.py). `os.ttyname()` can be...

pySerial clears the OPOST flags to achieve RAW output. Post processing could otherwise change CR/LF again and/or add unwanted delays or fill characters to the output. All of that is...

That makes it easier for the user to see that the files are current but it gives you the time of copy, not the original file time, which I would...