1
0
mirror of https://github.com/mik3y/usb-serial-for-android synced 2025-06-07 16:06:10 +00:00

Expose isOpen on CommonUsbSerialPort

This commit is contained in:
Behxhet Sadiku 2020-05-19 20:50:42 +02:00
parent ca78840144
commit 37324c6b0f
2 changed files with 9 additions and 0 deletions

View File

@ -221,6 +221,10 @@ public abstract class CommonUsbSerialPort implements UsbSerialPort {
return offset; return offset;
} }
@Override
public boolean isOpen() {
return mConnection != null;
}
@Override @Override
public abstract void setParameters(int baudRate, int dataBits, int stopBits, int parity) throws IOException; public abstract void setParameters(int baudRate, int dataBits, int stopBits, int parity) throws IOException;

View File

@ -226,4 +226,9 @@ public interface UsbSerialPort extends Closeable {
*/ */
public boolean purgeHwBuffers(boolean purgeWriteBuffers, boolean purgeReadBuffers) throws IOException; public boolean purgeHwBuffers(boolean purgeWriteBuffers, boolean purgeReadBuffers) throws IOException;
/**
* @return the current state of the connection
*/
public boolean isOpen();
} }