Re: pySerial question, setting certain serial parameters [newbie]

2012-02-07 Thread Peter
On Feb 4, 11:47 pm, Jean Dupont wrote: > I need to set the following options I found in a Perl-script in Python for > serial communication with a device (a voltmeter): > > $port->handshake("none"); > $port->rts_active(0); > $port->dtr_active(1); > > I have thus far the following  statements but I

Re: pySerial question, setting certain serial parameters [newbie]

2012-02-06 Thread Chris Rebert
On Sat, Feb 4, 2012 at 4:47 AM, Jean Dupont wrote: > I need to set the following options I found in a Perl-script in Python for > serial communication with a device (a voltmeter): > > $port->handshake("none"); > $port->rts_active(0); > $port->dtr_active(1); > > I have thus far the following  stat

Re: pyserial question

2009-06-19 Thread Grant Edwards
On 2009-06-19, Dennis Lee Bieber wrote: > On Thu, 18 Jun 2009 14:24:42 +0300, Piter_ declaimed >> I cant find out how to set "Handshaking RST on TX" in pyserial. > > Never encountered "RST" mode... "RTS" mode is common. > >>From the source -- a port can be initialized with: [nothing relev