Here is a snippet of code from a program in "C" I have running on Linux.  
Notice that I had to set both the input and output baud rates.  After looking 
around on the web, it seems to be a matter of whether the hardware will support 
split baud rate.  So, essentially, code it and try it.

   cfsetospeed(&tioPLL,B4800);     // 4800 baud
   cfsetispeed(&tioPLL,B4800);     // 4800 baud
   tcsetattr(ttyPLL,TCSANOW,&tioPLL);


Bob
_______________________________________________
time-nuts mailing list -- time-nuts@febo.com
To unsubscribe, go to https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
and follow the instructions there.

Reply via email to