Hello all, This is an example of how I would try to drop RTS, I am porting a win32 seismometer program to FreeBSD / X11. However this does not seem to work on FreeBSD, my cheap breakout box reports no change. #include <unistd.h> #include <termios.h> int fd; int status; ioctl(fd, TIOCMGET, &status); status &= ~TIOCM_RTS; ioctl(fd, TIOCMSET, status); Any ideas, more reliable way to do this? Any docs? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message