Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove pyparallel and move pyserial files to toplevel | Chris Liechti | 2015-08-03 | 1 | -730/+0 |
| | |||||
* | doc updatelast-svn-state | cliechti | 2014-08-04 | 1 | -7/+8 |
| | |||||
* | [Bug pyserial:156] PosixSerial.open raises OSError rather than ↵ | cliechti | 2014-08-04 | 1 | -1/+1 |
| | | | | SerialException when port open fails | ||||
* | doc update | cliechti | 2014-08-03 | 1 | -17/+34 |
| | |||||
* | swap "except" for Python 3.x compatibility in read() | cliechti | 2014-08-03 | 1 | -4/+6 |
| | |||||
* | [Patch pyserial:31] Mark/space parity on Linux | cliechti | 2014-07-31 | 1 | -0/+7 |
| | |||||
* | flush after open, seems to make a difference for some USB-serial drivers | cliechti | 2013-10-17 | 1 | -1/+1 |
| | |||||
* | Ensure working with bytes in write() calls. to_bytes() extended to handle ↵ | cliechti | 2013-10-16 | 1 | -2/+2 |
| | | | | bytes and memoryview instaces | ||||
* | [Bug pyserial:151] Serial.write() without a timeout uses 100% CPU on POSIX | cliechti | 2013-10-12 | 1 | -0/+5 |
| | |||||
* | [Patch pyserial:30] [PATCH 1/1] serial.Serial() should not raise IOError. | cliechti | 2013-10-11 | 1 | -10/+10 |
| | | | | also catch errors when getting struct | ||||
* | [Patch pyserial:29] PosixSerial.read() should "ignore" errno.EINTR | cliechti | 2013-10-11 | 1 | -16/+26 |
| | |||||
* | [Patch pyserial:28] Accept any speed on Linux | cliechti | 2013-10-11 | 1 | -12/+11 |
| | |||||
* | rename internal variable | cliechti | 2013-10-11 | 1 | -3/+3 |
| | |||||
* | [Bug pyserial:141] open: Pass errno from IOError to SerialException | cliechti | 2013-10-10 | 1 | -2/+2 |
| | |||||
* | [Bug pyserial:137] Patch to add non-standard baudrates to Cygwin | cliechti | 2013-05-31 | 1 | -1/+13 |
| | |||||
* | update for BSD: list_ports and device function | cliechti | 2011-12-29 | 1 | -4/+4 |
| | |||||
* | rename flowControl to setXON to be similar to the win32 implementation and ↵ | cliechti | 2011-12-28 | 1 | -7/+23 |
| | | | | add flowControlOut, doc updates | ||||
* | implement outWaiting on Posix, doc updates | cliechti | 2011-12-28 | 1 | -1/+11 |
| | |||||
* | use absolute imports so that 2to3 works | cliechti | 2011-08-22 | 1 | -1/+1 |
| | |||||
* | accepted patch SF 3316943 | cliechti | 2011-08-05 | 1 | -2/+4 |
| | |||||
* | rewrite port open check so that it also works when port was never open()'d | cliechti | 2011-06-14 | 1 | -18/+15 |
| | |||||
* | fix recently added port open check (pasted to wrong function) | cliechti | 2011-03-24 | 1 | -3/+3 |
| | |||||
* | related to SF 3093882, raise an exception when open() is called twice, also ↵ | cliechti | 2011-03-19 | 1 | -0/+2 |
| | | | | add unit test for this | ||||
* | fix poll timeout, thanks to Roger Larsson | cliechti | 2010-07-21 | 1 | -1/+1 |
| | |||||
* | fix SF:3006606 Nonblocking error - Unix platform | cliechti | 2010-05-25 | 1 | -1/+1 |
| | |||||
* | - update select based read to handle disconnected devices -> excpetion | cliechti | 2010-01-02 | 1 | -50/+57 |
| | | | - move poll version away (PosixPollSerial class) | ||||
* | revert to select based read for all platforms except Linux | cliechti | 2009-10-27 | 1 | -24/+47 |
| | |||||
* | - move Linux specific constants to not break other platforms [Bug 2836297] | cliechti | 2009-08-14 | 1 | -62/+54 |
| | | | | - remove setting special baudrate for cygwin (was untested copy of Linux code) | ||||
* | - read: improve error handling -> raise exception when device fails (e.g. ↵ | cliechti | 2009-08-07 | 1 | -4/+9 |
| | | | | | | unplugged USB serial convertors) - write: raise SerialExceptions, not other exceptions from the system | ||||
* | improve write timeout (time applies to entire write, not to each internal loop) | cliechti | 2009-08-07 | 1 | -9/+12 |
| | |||||
* | add platform specific function to control flow control state | cliechti | 2009-08-03 | 1 | -0/+8 |
| | |||||
* | add helper function to automatically select native or RFC2217 implementation ↵ | cliechti | 2009-08-02 | 1 | -2/+2 |
| | | | | of Serial object | ||||
* | - improve compatibility with io library (also accept bytearray for write) | cliechti | 2009-07-28 | 1 | -2/+2 |
| | | | | - update test for Serial+io | ||||
* | fix some minor issues that were uncovered when run with 3.x | cliechti | 2009-07-28 | 1 | -9/+15 |
| | |||||
* | - read/write now work with bytes when available on older Pythons that is ↵ | cliechti | 2009-07-27 | 1 | -21/+23 |
| | | | | | | | | equal to a str (implemented compatibility objects in serualutil) - improve conversion result of 2to3 - remove RawSerial object again - update docs | ||||
* | - add more methods for file-like compatibility | cliechti | 2009-07-25 | 1 | -4/+19 |
| | | | | | | | | | | | - provide RawSerial when io library is present (not yet finished) -> changes internal class hierarchy -> renamed internal read/write -> _read/_write (FileLike resp. RawSerialBase provides read/write) -> add test_rawio.py - _write returns number of byte written - set minimal python version to 2.3 due to basestring - add "name" attribute - documentation updates (new io stuff and VERSION, device()) | ||||
* | separate code to set non standard baudrates as is depends on the platform | cliechti | 2009-07-23 | 1 | -62/+148 |
| | |||||
* | remove print and replace with stdio writes | cliechti | 2009-07-23 | 1 | -4/+5 |
| | |||||
* | fix a few typos | cliechti | 2009-07-21 | 1 | -19/+19 |
| | |||||
* | fix test failure (test_advanced.py) | cliechti | 2009-07-21 | 1 | -3/+10 |
| | |||||
* | minor doc changes | cliechti | 2009-07-21 | 1 | -1/+1 |
| | |||||
* | 1.5 stop bit support | cliechti | 2009-02-16 | 1 | -35/+38 |
| | |||||
* | doc update | cliechti | 2009-02-07 | 1 | -1/+1 |
| | |||||
* | - [Patch 1561423] Add mark/space parity, Win32 | cliechti | 2008-06-21 | 1 | -7/+5 |
| | | | - remove VERSION constants except for the one in __init__.py | ||||
* | [patch 1924805] add a setBreak function (proposed files attached) | cliechti | 2008-06-21 | 1 | -1/+12 |
| | |||||
* | [Patch 1616790] pyserial: Add inter-character timeout feature | cliechti | 2008-06-20 | 1 | -1/+4 |
| | |||||
* | implement [Bug 1783159] Arbitrary baud rates (Linux/Posix) | cliechti | 2008-06-20 | 1 | -2/+31 |
| | |||||
* | - check for strings patch | cliechti | 2008-06-16 | 1 | -2/+4 |
| | | | | | - FreeBSD device name patch - update history | ||||
* | fall back to internal baud rate constants if the termios module hasn't one. ↵ | cliechti | 2007-11-08 | 1 | -2/+39 |
| | | | | happens for large baudrates on some systems | ||||
* | consistency with other platforms | cliechti | 2007-11-08 | 1 | -1/+2 |
| |