On Tue, Jan 5, 2010 at 9:05 AM, Jon Smirl <[email protected]> wrote: > Termios only has baud rate constants that go up to 230,400. I have my > mc13224 board running at 921,600. The perl package > Device::SerialPort; allows higher baud rates. Running a high baud > reduces latency. Is there a Python equivalent? I can slow my board > down in the meanwhile.
Try using higher values in numeric form. According to my bits/termios.h: #define B57600 0010001 #define B115200 0010002 #define B230400 0010003 #define B460800 0010004 #define B500000 0010005 #define B576000 0010006 #define B921600 0010007 #define B1000000 0010010 #define B1152000 0010011 #define B1500000 0010012 #define B2000000 0010013 #define B2500000 0010014 #define B3000000 0010015 #define B3500000 0010016 #define B4000000 0010017 -- With best wishes Dmitry ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Linux-zigbee-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-zigbee-devel
