LINUX.IE, website of the Irish Linux Users' Group
Tux rules!

   
Home
New Users
Articles
Download
Projects
Community
Vendors

  Print Version
Email to...
 
Archives:


planetILUG

Recent News

News Archive


Join the
ILUG
on FaceBook


Join the
ILUG
on LinkedIn


Join the
ILUG SETI
Group



















 
 :: Mailing Lists

[ILUG] Urgent help needed

[ILUG] Urgent help needed

Ronan Cunniffe ronan at iaa.es
Wed Mar 29 12:56:36 IST 2006


Shane wrote:

> Hi, If anyone can provide me with g++ code to configure a serial 
> port...buad, bits etc..no handshaking required, and how I can switch 
> echo on and off.  Simple code please..no buffers, or streams need to 
> be handled    purely capture and autoecho a single byte.

I just happen to be doing this kind of stuff....

#include <termios.h>

/*********************************************************
 * config_9600_8N1
 *
 */

int config_serial(unsigned fd)
{
        struct termios ns;

        tcgetattr(fd,&ns);
        cfsetispeed(&ns,B9600);
        cfsetospeed(&ns,B9600);
        cfmakeraw(&ns);       //implies 8N1
        ns.c_lflag&=ECHO;   //autoreply to incoming characters

        return tcsetattr(fd,TCSANOW,&ns);
}

The ECHO assumes you want to reply with the same byte that came in.  
Otherwise, remove that and do it manually with 
read/write/select/poll/whatever.

> Cash reward for quick response

Bah.  Buy someone an unexpected beer.

Ronan



More information about the ILUG mailing list
Read this without the formatting.
                                                                                                    

 

Hosted by HEAnet


Maintained by the ILUG website team. The aim of Linux.ie is to support and help commercial and private users of Linux in Ireland. You can display ILUG news in your own webpages, read backend information to find out how. Networking services kindly provided by HEAnet, server kindly donated by Dell. Linux is a trademark of Linus Torvalds, used with permission. No penguins were harmed in the production or maintenance of this highly praised website. Looking for the Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!
RSS Version
Powered by Dell