Muchas gracias Gabriel por haberme informado, vos si que es un profesional de la programación.
Un saludo, David --- Gabriel <[EMAIL PROTECTED]> escribió: > David: > Tube el mismo problema que vos con el hilo del > ejemplo de pyserial. Me > paso que en Linux andaba bien, obvio, pero tenia un > pequeño > problemilla en Windows, también obvio. > > Lo solucione de la siguiente manera: > Asi es el codigo original de la función > ComPortThread > > def ComPortThread(self): > """Thread that handles the incomming > traffic. Does the basic input > transformation (newlines) and generates > an SerialRxEvent""" > > while self.alive.isSet(): > #loop while alive event is true > if self.ser.inWaiting() != 0: > text = self.ser.read() > event = SerialRxEvent(self.GetId(), > text) > > self.GetEventHandler().AddPendingEvent(event) > > > solo tiene que agregarle el siguiente bucle antes > que nada: > while not self.alive.isSet(): > pass > > quedándote así dicha función... > > def ComPortThread(self): > """Thread that handles the incomming > traffic. Does the basic input > transformation (newlines) and generates > an SerialRxEvent""" > while not self.alive.isSet(): > pass > > while self.alive.isSet(): > #loop while alive event is true > if self.ser.inWaiting() != 0: > text = self.ser.read() > event = SerialRxEvent(self.GetId(), > text) > > self.GetEventHandler().AddPendingEvent(event) > > y listo... Con eso debería andar > Espero haber sido útil > > -- > Gabriel > ______________________________________________ LLama Gratis a cualquier PC del Mundo. Llamadas a fijos y móviles desde 1 céntimo por minuto. http://es.voice.yahoo.com -- http://mail.python.org/mailman/listinfo/python-list