On 2009-08-31, Grant Edwards <gra...@visi.com> wrote:

> If you want a configuration that's all zeros, why bother
> calling tcgetattr() at all?  Just set the configuration to
> zeros:
>
> term_conf = [0,0,0,0,0,0]

Oops, I forgot about cc.  That should be:

  term_conf = [0,0,0,0,0,0,['\x00']*32]

That's why it's easier to just use pyserial ;)
  
-- 
Grant


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to