summaryrefslogtreecommitdiff
path: root/pyserial/serial
Commit message (Collapse)AuthorAgeFilesLines
...
* update for BSD: list_ports and device functioncliechti2011-12-292-8/+7
|
* allow setRTS, setDTR before opening on Win32 (to set initial state), doc updatecliechti2011-12-291-9/+18
|
* rename flowControl to setXON to be similar to the win32 implementation and ↵cliechti2011-12-282-8/+28
| | | | add flowControlOut, doc updates
* implement outWaiting on Posix, doc updatescliechti2011-12-281-1/+11
|
* add setBufferSize function (platform specific)cliechti2011-12-281-0/+8
|
* fix for [Bug 3444941] ctypes.WinError() unicode errorcliechti2011-12-281-5/+5
|
* fix SF 3462364, "base" not definedcliechti2011-12-281-1/+2
|
* preparations after releasecliechti2011-11-021-1/+1
|
* fix for bug 3414327cliechti2011-11-021-1/+1
|
* add more command line options to list_portscliechti2011-08-251-14/+53
|
* fix syntax errorcliechti2011-08-251-1/+0
|
* apply patch from cjgohlke, add is_64bit detection functioncliechti2011-08-252-13/+23
|
* fix HDEVINFO typecliechti2011-08-221-1/+1
|
* ensure that a string is returned, also on Py 3.xcliechti2011-08-221-3/+9
|
* compatibility hacks for Py 2.x/3.x supportcliechti2011-08-221-8/+16
|
* compatibility hack for Python 2.x/3.x supportcliechti2011-08-221-2/+5
|
* use absolute imports so that 2to3 workscliechti2011-08-228-13/+13
|
* make search case insensitivecliechti2011-08-211-1/+1
|
* fix types that are not yet available in Python older 2.xcliechti2011-08-211-9/+14
|
* fix CHAR type (bug introduces in last change to this file)cliechti2011-08-201-1/+1
|
* fix exception type not found and only grep through list if it starts with ↵cliechti2011-08-191-2/+2
| | | | hwgrep:// otherwise exhibit native port behavior
* doc and __main__ updatecliechti2011-08-191-2/+2
|
* new protocol "hwgrep://<regexp>"cliechti2011-08-191-0/+45
|
* also redirect stderr when calling lsusbcliechti2011-08-191-2/+2
|
* extract detailed hardware info on Linuxcliechti2011-08-191-1/+107
|
* fix usage of types to gain 64 bit Windows compatibilitycliechti2011-08-182-17/+32
|
* fix for patial reads with loop://, ensure bytes type is usedcliechti2011-08-181-2/+5
|
* raise ImportError (instead of plain Exception) if platform is not supportedcliechti2011-08-181-5/+7
|
* - add serial.tools.list_ports, implement platform detection code and a main ↵cliechti2011-08-053-6/+145
| | | | | | routine - add code from 2912349 (scan for mac)
* implement patch 3147043cliechti2011-08-051-1/+2
|
* implement patch 3054352 (with changes to the original patch)cliechti2011-08-052-2/+22
|
* implmement patch according to SF 3036175cliechti2011-08-051-9/+24
|
* accepted patch SF 3316943cliechti2011-08-051-2/+4
|
* - fix for SF 3057499cliechti2011-08-051-5/+6
|
* include ttyACM in listcliechti2011-06-161-1/+1
|
* rewrite port open check so that it also works when port was never open()'dcliechti2011-06-141-18/+15
|
* fix for SF 3245627 (read loop hangs on lost connection), fix some doc typos, ↵cliechti2011-04-251-9/+12
| | | | add debug logs
* fix recently added port open check (pasted to wrong function)cliechti2011-03-241-3/+3
|
* add code to list available portscliechti2011-03-242-0/+199
|
* changed to miniterm: improve error handling on port change, more compact ↵cliechti2011-03-211-50/+63
| | | | info text
* related to SF 3093882, raise an exception when open() is called twice, also ↵cliechti2011-03-197-0/+14
| | | | add unit test for this
* cleanup, improve saved state on port changecliechti2011-03-181-7/+11
|
* - add CTRL-T + P to change connected port in minitermcliechti2011-03-181-13/+49
| | | | - cleanups
* - add a "search path" for (URL) protocol handlers so that user can add its owncliechti2011-03-181-9/+26
| | | | | | - add unit test for custom handler - doc update - increment version to 2.6-pre1
* implement URL handler as modules and import them at runtime. this allows to ↵cliechti2011-03-045-14/+25
| | | | create more handlers as plug-in for pySerial
* - add tools as subpackage so that python -m serial.tools.XXX can be used.cliechti2011-03-042-0/+584
| | | | - move miniterm from exaples
* fix bytearray class so that readline works again with Python 2.5 and oldercliechti2010-07-221-3/+17
|
* - move [x]readline[s] to FileLike base class (io module provides ↵cliechti2010-07-211-42/+46
| | | | | implementation in the other case) - CR and LF constants added
* use False instead of 0cliechti2010-07-211-2/+2
|
* fix poll timeout, thanks to Roger Larssoncliechti2010-07-211-1/+1
|