[Twisted-Python] Selectable SerialPort Windows/Linux

Markus Hubig mhubig at imko.de
Tue Sep 14 09:32:29 EDT 2010


On Tue, Sep 14, 2010 at 2:08 PM, <exarkun at twistedmatrix.com> wrote:

> See the serialport examples on the website.  A couple are linked from
> http://twistedmatrix.com/documents/current/core/examples/.
>

The examples I found are mouse.py and gpsfix.py and there only listening on
the serial line. It seems that with twisted I have some sort of a thread
running
which will trigger some methods (e.g. dataRecieved) as it reads something
from the serial line. How could I send data then?


> You do indeed want a Protocol subclass.


Ok I see, and the Protocol subclass provides the dataReceived method!?


> The code from your "self.read(7)" line to the end of that loop will
> probably

end up in a dataReceived method - but note that you'll have to do some

buffering, as you can't be assured that dataReceived will get called with
> exactly

the number of bytes you want at a time, so you may have to collect data from
> multiple dataReceived calls (likewise you may get more than you want at
> once, and need to split it up).
>

Hmm ok so I have to design dataReceived() to buffer the received data until
it get's
the whole answer packet and than let it call e.g. packetRecieved() to
process the
packet ... I'm mot sure if this asynchronous approach is what I need,
because the
protocol I'm implementing is strict Master-Slave.

- Markus

-- 
__________________________________________________________________

IMKO Micromodultechnik GmbH
Markus Hubig
System Administration & Development
Im Stoeck 2
D-76275 Ettlingen / GERMANY

HR: HRB 360936 Amtsgericht Mannheim
President: Dipl.-Ing. (FH) Kurt Koehler

Tel: 0049-(0)7243-5921-26
Fax: 0049-(0)7243-5921-40
e-mail: mhubig at imko.de
internet: www.imko.de
_________________________________________________________________
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://twistedmatrix.com/pipermail/twisted-python/attachments/20100914/c7407ee0/attachment.htm 


More information about the Twisted-Python mailing list