summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'release2_0'.release2_0nobody2003-11-0632-2070/+0
|
* 2.0 releasecliechti2003-11-063-5/+27
| | | | changed the setup.py version hack to the recomended code in the distutils docs
* applied patches and feature requestscliechti2003-10-052-13/+30
|
* code cleanupcliechti2003-10-051-7/+6
|
* - bugfixescliechti2003-10-041-63/+94
| | | | - code cleanup
* 2.0b2 releasecliechti2003-10-044-3/+11
|
* - port settings in titlecliechti2003-10-042-29/+58
| | | | | | | - docstrings - remove statusbar - close on cancel in startup dialog - message box if port cannot be opened
* - remove unsupported baudrates on windows from the listcliechti2003-10-035-2/+421
| | | | | - added terminal application for wxPython with wxGlade design file - enumerate bugfix for python < 2.3
* new port configuration dialog fo wxPythoncliechti2003-10-032-0/+515
| | | | design file for wxGlade is provided too
* forgot to init attributecliechti2003-10-011-0/+1
|
* Transition to the 2.0 series:cliechti2003-10-0111-393/+894
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New implementation only supports Python 2.2+, backwards compatibility should be maintained almost everywhere. The OS handles (like the hComPort or fd attribute) were prefixed with an underscore. The different names stay, as anyone that uses one of these has to write platform specific code anyway. - Common base class serialutil.SerialBase for all implementations. - PARITY_NONE, PARITY_EVEN, PARITY_ODD constants changed and all these constants moved to serialutil.py (still available as serial.PARITY_NONE etc. and they should be used that way) - Added serial.PARITY_NAMES (implemented in serialutil.PARITY_NAMES). This dictionary can be used to convert parity constants to meaningful strings. - Each Serial class and instance has a list of supported values: BAUDRATES, BYTESIZES, PARITIES, STOPBITS (i.e. serial.Serial.BAUDRATES or s = serial.Serial; s.BAUDRATES) these values can be used to fill in value sin GUI dialogs etc. - Creating a Serial() object without port spec returns an unconfigured, closed port. Useful if a GUI dialog should take a port and configure it. - New methods for serial.Serial instances: open(), isOpen() - A port can be opened and closed as many times as desired. - Instances of serial.Serial have baudrate, bytesize, timeout etc. attributes implemented as properties, all can be set while the port is opened. It will then be reconfigured. - Improved __doc__'s. - New test_advanced.py for the property setting/getting testing. - Small bugfix on posix with get* methods (return value should be true a boolean). - added a __repr__ that returns a meaningful string will all the serial setting, easy for debugging. - The serialposix module does not throw an exception on unsupported platforms, the message is still printed. The idea that it may still work even if the platform itself s not known, it simply tries to do the posix stuff anyway (It's likely that opening ports by number fails, but by name it should work).
* updated for release 1.21cliechti2003-09-303-3/+8
|
* name for COM10 was not built correctly, found by Norm Daviscliechti2003-09-201-2/+2
|
* updated clasifiers for PyPicliechti2003-09-101-1/+14
|
* updates for 1.20 releasecliechti2003-08-282-1/+8
|
* fix typocliechti2003-08-283-25/+11
|
* add device() functioncliechti2003-08-281-9/+12
| | | | fix typo
* updated USB comment (tnx Nathan Hurst)cliechti2003-08-281-9/+25
| | | | | tips & tricks section link to Roger Binns page (comscan)
* removed mac comment - no parallelports there...cliechti2003-07-281-3/+1
|
* dont recreate opverlaped structures and events on each read/writecliechti2003-07-121-35/+25
| | | | dont set unneded event masks
* self.ctrlReg was not initilized in win32 versioncliechti2003-05-262-4/+3
| | | | getInSelected typo fixed
* dont use DOS device names for ports > 9cliechti2003-04-301-3/+8
|
* remove send timeout (its not used in the linux impl. anyway)cliechti2003-04-291-4/+2
|
* release 0.1 updatescliechti2003-03-194-22/+34
|
* updates for 1.19cliechti2003-03-193-2/+10
|
* added int() conversion, bug report 702120cliechti2003-03-191-2/+2
|
* remove code to set control lines in close methond of win32 version. [Bug 669625]cliechti2003-03-031-3/+3
|
* removed dgux entry which actualy had a wrong comment and is probably not in ↵cliechti2003-02-201-5/+1
| | | | use anywhere
* usb comment update, tnanks to Pascal Oberndoerfercliechti2003-01-141-3/+8
|
* fixes for NT4cliechti2003-01-141-14/+15
|
* note about usb adapterscliechti2003-01-131-3/+10
|
* stripped down msdos version Dave Haynescliechti2002-12-061-0/+229
| | | | not yet itegraded with automatic detection but direcly importable
* prepare for release 1.18cliechti2002-12-063-6/+21
|
* cygwin port numbering fixedcliechti2002-12-051-5/+7
| | | | inWaiting uses local copy of constant
* RTS/CTS handling as sugested in Bug #635072cliechti2002-11-261-9/+5
|
* test each and every constamt for its existence in termios module, use ↵cliechti2002-11-191-39/+21
| | | | default if not existent (fix for Bug item #640214)
* wrong exception on nonexitstent ports with /dev file. bug report by Louis ↵cliechti2002-11-071-3/+6
| | | | Cordier
* added loaddrv options for status and chage of start typecliechti2002-09-143-10/+267
| | | | batch file set laoded driver starttype to automatic
* remove loading of giveio (NT/2k/XP) driver within extension.cliechti2002-09-096-151/+40
| | | | | use loaddrv.exe to load the driver. it stays loaded accross system boots. the batchfiles *_giveio.bat are there to install or remove the driver
* check if dirver file exists when installingcliechti2002-09-071-10/+27
| | | | error code handling
* bugfix of timeouts brought up by Markus Hoffroggecliechti2002-09-061-2/+3
|
* EOL character for lines can be chosencliechti2002-08-291-6/+7
| | | | idea by John Florian
* remove the mapping of flush to the destructive flushOutput as this is not ↵cliechti2002-08-181-6/+2
| | | | the expected behaviour
* for install: if no path is given, then the file is searched in the current ↵cliechti2002-08-141-1/+3
| | | | directory, the file extension .sys is appended
* added load driver tool, in case someone has troubles with the automatic ↵cliechti2002-08-143-0/+207
| | | | | | loading of the sys file for pyparallel based on Paula Tomlinson's sources (see source files)
* changed device name, cosmeticscliechti2002-08-071-10/+12
|
* added linux/ppdev implementation from Michael Ashtoncliechti2002-07-313-22/+594
| | | | synchronized method and class names between win and ppdev impl.
* added giveio sources and a readmecliechti2002-07-315-0/+294
|
* initial upload, directio/giveio.sys sources still missingcliechti2002-07-2912-0/+616
|
* 1.17 changescliechti2002-07-032-2/+5
|