summaryrefslogtreecommitdiff
path: root/CHANGES.txt
Commit message (Collapse)AuthorAgeFilesLines
* [Bug pyserial:156] PosixSerial.open raises OSError rather than ↵cliechti2014-08-041-0/+2
| | | | | | SerialException when port open fails git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@507 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:157] Implement inWaiting in protocol_socketcliechti2014-08-041-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@506 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:159] write() in serialcli.py not working with IronPython 2.7.4cliechti2014-08-041-0/+5
| | | | | | | doc changes git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@505 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* update wxSerialConfigDialog.py to use serial.tools.list_portscliechti2014-08-011-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@501 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* Java: fix 2 bugs (stop bits if/else and non-integer timeouts) (Torsten Roemer)cliechti2014-08-011-1/+4
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@500 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:163] serial.tools.list_ports.grep() fails if it encounters ↵cliechti2014-08-011-0/+5
| | | | | | None type git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@499 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Patch pyserial:32] Module list_ports for linux should include the product ↵cliechti2014-07-311-0/+1
| | | | | | information as description. git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@498 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Patch pyserial:31] Mark/space parity on Linuxcliechti2014-07-311-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@497 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [FTR pyserial:37] Support fileno() function in the socket protocolcliechti2014-07-311-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@496 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:166] RFC2217 connections always failcliechti2014-07-311-0/+6
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@495 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* prepare releasecliechti2013-10-171-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@489 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* doc updatescliechti2013-10-171-3/+3
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@482 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* Ensure working with bytes in write() calls. to_bytes() extended to handle ↵cliechti2013-10-161-0/+1
| | | | | | bytes and memoryview instaces git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@479 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:151] Serial.write() without a timeout uses 100% CPU on POSIXcliechti2013-10-121-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@473 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* OSX: [Patch pyserial:27] Scan by VendorID/Product ID for USB Serial devicescliechti2013-10-121-0/+1
| | | | | | | also refactor list_ports_posix and take out the linux implementation into a separate file git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@472 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Patch pyserial:30] [PATCH 1/1] serial.Serial() should not raise IOError.cliechti2013-10-111-0/+1
| | | | | | | also catch errors when getting struct git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@471 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Patch pyserial:29] PosixSerial.read() should "ignore" errno.EINTRcliechti2013-10-111-1/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@470 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Patch pyserial:28] Accept any speed on Linuxcliechti2013-10-111-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@469 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:117] no error on lost conn w/socket:// => return empty string ↵cliechti2013-10-111-0/+1
| | | | | | | | | to signal EOF also fix reception of multiple bytes (extend vs append) git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@468 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:125] Undefined 'base' on list_ports_posix.py, function usb_lsusbcliechti2013-10-111-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@467 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:130] setup.py should not append py3k to package namecliechti2013-10-111-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@466 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:141] open: Pass errno from IOError to SerialExceptioncliechti2013-10-101-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@463 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:152] Cannot configure port, some setting was wrong. can leave ↵cliechti2013-10-101-0/+2
| | | | | | port handle open but port not accessible git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@462 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* rfc2217: zero polls value (baudrate, data size, stop bits, parity) (Erik Lundh)cliechti2013-07-311-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@461 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:135] reading from socket with timeout=None causes TypeErrorcliechti2013-05-311-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@460 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:137] Patch to add non-standard baudrates to Cygwincliechti2013-05-311-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@459 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:144] com0com ports ignored due to missing "friendly name"cliechti2013-05-311-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@458 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:45] Error in socket_connection.pycliechti2013-05-311-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@457 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* [Bug pyserial:146] flush() does nothing in windows (despite docs)cliechti2013-05-311-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@456 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* improve python 3 compatibility [Bug 3518380]cliechti2012-08-161-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@455 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix [Bug 3540332], base class of port not open exception changed to ↵cliechti2012-08-161-0/+4
| | | | | | SerialException git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@454 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix [Bug 3550043]cliechti2012-08-161-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@453 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* update for BSD: list_ports and device functioncliechti2011-12-291-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@447 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* allow setRTS, setDTR before opening on Win32 (to set initial state), doc updatecliechti2011-12-291-1/+5
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@445 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* implement outWaiting on Posix, doc updatescliechti2011-12-281-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@443 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix for [Bug 3444941] ctypes.WinError() unicode errorcliechti2011-12-281-0/+3
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@441 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix SF 3462364, "base" not definedcliechti2011-12-281-1/+6
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@440 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* preparations after releasecliechti2011-11-021-0/+4
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@438 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* Release 2.6cliechti2011-11-021-1/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@436 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* doc updatecliechti2011-08-221-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@428 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* new protocol "hwgrep://<regexp>"cliechti2011-08-191-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@416 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix usage of types to gain 64 bit Windows compatibilitycliechti2011-08-181-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@413 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* - add serial.tools.list_ports, implement platform detection code and a main ↵cliechti2011-08-051-0/+2
| | | | | | | | | routine - add code from 2912349 (scan for mac) git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@408 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* implement patch 3147043cliechti2011-08-051-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@407 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* implement patch 3054352 (with changes to the original patch)cliechti2011-08-051-5/+6
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@406 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* implmement patch according to SF 3036175cliechti2011-08-051-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@405 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* accepted patch SF 3316943cliechti2011-08-051-0/+4
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@404 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* - fix for SF 3057499cliechti2011-08-051-1/+6
| | | | git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@403 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* fix for SF 3245627 (read loop hangs on lost connection), fix some doc typos, ↵cliechti2011-04-251-0/+1
| | | | | | add debug logs git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@399 f19166aa-fa4f-0410-85c2-fa1106f25c8a
* related to SF 3093882, raise an exception when open() is called twice, also ↵cliechti2011-03-191-0/+4
| | | | | | add unit test for this git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@392 f19166aa-fa4f-0410-85c2-fa1106f25c8a