VAN SY wrote:

> I need a good book to get a better understanding of how to
> control the serial port using C/C++.

Or maybe you just need to read the tcsetattr(3) manpage.

If you want to read or control the status lines, use the TIOCMGET,
TIOCMBIS, TIOCMBIC and/or TIOCMSET ioctl()s. See the kernel source
code for details.

If you just want to control how data is read/written (e.g. to read or
write raw data without line buffering, signals etc), just use
tcsetattr().

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to