Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jan 2000 09:50:52 +0600 (ALMT)
From:      kris@sl.relcom.kz (Eugene A. Panov )
To:        java@freebsd.org
Subject:   Java COMM API FLOWCONTROL Realization
Message-ID:  <200001110350.JAA27319@sl.relcom.kz>

next in thread | raw e-mail | index | archive | help
Hello , I have got FreeBSD Java COMM API Driver and looked at its code. 
I don't know if it should be so or not , but FLOWCONTROL_NONE is set by modifying c_cflag only . c_cflag &= ~ ( XON | XOFF | CRTSCTS ) . 
But in termios spec. I saw that for supporting XON/XOFF is resposible c_iflag. ?? So possibly it should be 
c_cflag &= ~ CRTSCTS ; 
c_iflag &= ~ ( XON | XOFF ) ; 

( Found code is in libSerial.c ) 
Thank you . 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-java" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001110350.JAA27319>