you have to use ioctl-calls to do this:


  int aMCR;

  if(ioctl(fd,TIOCMBIS,&aMCR)==-1) // Turn on RTS
   fprintf(stderr," (RTS=1 ERROR)");


  if(ioctl(fd,TIOCMBIC,&aMCR)==-1) // Turn off RTS
   fprintf(stderr," (RTS=0 ERROR)");


hth,

    Michael


-
To unsubscribe from this list: send the line "unsubscribe linux-serial" in
the body of a message to [EMAIL PROTECTED]

Reply via email to