public class PuertoSerial{
/*************************************************************
* DEFINICION DE LOS ATRIBUTOS *
*************************************************************/
/.../
public PuertoSerial() {
/.../
try {
this.puerto.addEventListener( new SerialPortEventListener() {
public void serialEvent( SerialPortEvent evento ) {
cambioBanderaDSR( evento );
//DSR es un pin del puerto serial q me indica si el dispositivo q esta
// conectado al puerto esta ocupado.
//Es decir, el disp. q se encuentra conectado al pto. serial del pc,
//pone esta bandera en 1 para indicarle al pc q esta ocupado y q no lo
// moleste, o lo pone en 0 para decirle q esta listo para recibir un
// comando o para lo q sea.
}
} );
}
catch ( TooManyListenersException exc ) {}
this.puerto.notifyOnDSR(true); //le digo q me notifiquen cuando haya un
// cambio de estado en la bandera DSR
}
public synchronized char recibirCaracter( long timeOut ) {
//Mientras q el disp, conectado al pc este ocupado, esperare a q se desocupe
// o hasta q transcurra el tiempo maximo de espera (timeOut)
while ( this.puerto.isDSR() ) {
try {
this.wait( timeOut );
}
catch ( InterruptedException e ) {}
}
if (this.puerto.isDSR() ) {
/...LEER CARACTER.../
}
return '\n';
}
public synchronized void enviarCaracter( char c, long timeOut ) {
//Mientras q el disp, conectado al pc este ocupado, esperare a q se desocupe
// o hasta q transcurra el tiempo maximo de espera (timeOut)
while ( this.puerto.isDSR() ) {
try {
this.wait( timeOut );
}
catch ( InterruptedException e ) {}
}
if (this.puerto.isDSR() ) {
/...ENVIAR CARACTER.../
}
return;
}
/**
* Este es el metodo q se llama cuando ocurre el evento de cambio de
* estado de la bandera DSR q es la indica si el disp. conectado al
* saerial esta o no disponible
*/
public synchronized void cambioBanderaDSR( SerialPortEvent evento ) {
if ( evento.getEventType() == SerialPortEvent.DSR ) {
//Si esto es true, entonces el DSR=1 y el disp. conectado al pto.
// serial esta listo.
// entonces llamo notifyAll para q despierte al wait q llame la ultima ves.
if ( !evento.getNewValue() ) {
this.notifyAll();
}
}
}
}