summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* chore: release 3.2.1v3.2.1Chris Liechti2016-10-143-5/+11
|
* Merge branch 'master' of github.com:pyserial/pyserialChris Liechti2016-10-141-6/+1
|\
| * Merge pull request #136 from rob-smallshire/regular_packagezsquareplusc2016-10-111-6/+1
| |\ | | | | | | serial cannot be a namespace package as it exports names
| | * Adds the missing import sys which got lostRobert Smallshire2016-06-161-0/+1
| | |
| | * serial cannot be a namespace package as it exports names such as serial_for_url.Robert Smallshire2016-06-161-6/+0
| | |
* | | chore: release 3.2.0v3.2.0Chris Liechti2016-10-143-4/+5
|/ /
* | remove unused importChris Liechti2016-10-111-1/+0
| |
* | docs: update CHANGES.rstChris Liechti2016-10-101-0/+5
| |
* | posix: support for arbitrary baudrates on BSD family, see #169Chris Liechti2016-10-091-0/+15
| |
* | test: remove traces of port numbersChris Liechti2016-10-085-16/+4
| |
* | test_advanced: cleanup testChris Liechti2016-10-071-26/+2
| |
* | test: fix sys.path patch to run local testsChris Liechti2016-10-061-1/+1
| |
* | test_util: compatibility with Python 3.x < 3.4Chris Liechti2016-10-051-1/+3
| |
* | test_cancel: make tests a little less timing sensitiveChris Liechti2016-10-052-4/+4
| | | | | | | | | | - increase resolution of sleep/check in loop:/ - add 0.5s more tolerance to tests
* | test: run more tests on travis-ciChris Liechti2016-10-051-1/+1
| |
* | threaded: use repr in exampleChris Liechti2016-10-051-2/+2
| |
* | test: add cancel_read/cancel_write to loop://, #165Chris Liechti2016-10-041-2/+16
| |
* | test: skip RS485 tests that only work on real port, #165Chris Liechti2016-10-031-1/+3
| |
* | serialposix: use names instead of numbers (errno)Chris Liechti2016-10-021-1/+2
| |
* | miniterm: fix missing newline in filter error messageChris Liechti2016-10-011-1/+1
| |
* | docs: extend notes on open()Chris Liechti2016-09-301-4/+10
| |
* | win32: fix syntax error, closes #166Chris Liechti2016-09-291-1/+1
| |
* | docs: mention RTS/DTR update on open, not all platforms supporting itChris Liechti2016-09-281-5/+13
| |
* | docs: extend how-to section, link to old releasesChris Liechti2016-09-183-3/+17
| |
* | win32: handle additional errors in non-blocking mode, see #162Chris Liechti2016-09-172-7/+19
| |
* | win32: fix return value of non-blocking write, fixes #162Chris Liechti2016-09-162-1/+7
| |
* | docs: update requirements, typoChris Liechti2016-09-152-3/+7
| | | | | | | | | | - typo reported by @DavidHowlett, fixes #161 - update requirements and mention WinXP :(
* | refactor: simplify to_bytesChris Liechti2016-09-141-8/+3
| |
* | test: cleanupsChris Liechti2016-09-132-3/+2
| |
* | test: add tests for to_bytes and iterbytesChris Liechti2016-09-121-0/+38
| |
* | fix: threaded FramedPacket, copy dataChris Liechti2016-09-111-1/+1
| | | | | | | | | | - pass along a copy of the data instead of a reference to the buffer that is cleared
* | Merge pull request #149 from f1sty/python35-fixzsquareplusc2016-09-101-1/+1
|\ \ | | | | | | Fix "TypeError: an integer is required" error from data_received.
| * | Fix "TypeError: an integer is required" error on Python 3.5.2Yurii Skrynnykov2016-08-121-1/+1
| | |
* | | tests: extend tests for serial.threadedChris Liechti2016-09-091-1/+26
| | |
* | | test: add minimal test for serial.theadedChris Liechti2016-09-081-0/+50
| | |
* | | docs: minor update to requirements, packagesChris Liechti2016-09-071-18/+20
| | |
* | | docs: typo, serial.rs485 needs to be importedChris Liechti2016-09-062-2/+4
| | | | | | | | | | | | fixes #159
* | | serialutil: add tests for Timeout classChris Liechti2016-09-051-0/+66
| | |
* | | serialutil: Improve Timeout class to handle clock adjustmentsChris Liechti2016-09-041-2/+10
| | | | | | | | | | | | | | | only applies to older Python versions where time.monotonic is not available, see also #155
* | | docs: timout classChris Liechti2016-09-032-2/+11
| | |
* | | serialutil: use monotonic clock for timeouts, if availableChris Liechti2016-09-021-7/+18
| | |
* | | rfc2217: use of Timeout class for modem state timeoutChris Liechti2016-09-012-5/+8
| | |
* | | rfc2217: use of Timeout classChris Liechti2016-08-311-9/+10
| | |
* | | posix: abstraction of timeout via classChris Liechti2016-08-302-18/+42
| | | | | | | | | | | | - preparation for use of monotonic clock support
* | | posix: clear CMSPAR on supported platforms, fixes #157Chris Liechti2016-08-292-6/+14
| | | | | | | | | | | | | | | - currently only supported under Linux - bit was not cleared for all the other parity settings
* | | docs: mention context manager of Serial classChris Liechti2016-08-121-0/+28
|/ /
* | docs: update old releases section and other detailsChris Liechti2016-08-111-10/+16
| |
* | posix: VTIMESerial fixes for blocking and cancel_readChris Liechti2016-08-081-0/+6
| | | | | | | | | | | | - support blocking (timeout=None) - "remove" cancel_read, so that e.g. miniterm does not use cancel_read but a timeout instead
* | list_ports_windows: support devices with only VID. fixes #145Chris Liechti2016-08-062-6/+7
| | | | | | | | | | - PID field is now optional (regexp) - if vid or pid is None, use a 0 for display
* | list_ports_windows: update fix for #144 for Python 3Chris Liechti2016-08-051-6/+2
| |