You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 27, 2021. It is now read-only.
Hi,
I am trying your jSerialComm with Netty solution - the example and am running into this error:
"java.io.IOException: The read operation timed out before any data was returned."
It gets thrown by jSerialComm class: private final class SerialPortInputStream extends InputStream
method: public final int read(byte[] b, int off, int len) throws NullPointerException, IndexOutOfBoundsException, IOException
section:
// Read from the serial port
int numRead = readBytes(portHandle, b, len, off);
if (numRead == 0)
throw new IOException("The read operation timed out before any data was returned.");
When I use jSerialComm on its own on the same port it performs fine.