console connectivity on specific Win11 device #3923
well nice call but no difference for our specific issue
This commit is contained in:
parent
94e5957271
commit
837d228159
|
@ -10,6 +10,8 @@ import com.rusefi.binaryprotocol.test.Bug3923;
|
||||||
import com.rusefi.io.IoStream;
|
import com.rusefi.io.IoStream;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
import static com.devexperts.logging.Logging.getLogging;
|
import static com.devexperts.logging.Logging.getLogging;
|
||||||
|
|
||||||
public class SerialIoStream extends AbstractIoStream {
|
public class SerialIoStream extends AbstractIoStream {
|
||||||
|
@ -59,6 +61,11 @@ public class SerialIoStream extends AbstractIoStream {
|
||||||
sp.writeBytes(bytes, bytes.length);
|
sp.writeBytes(bytes, bytes.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void flush() throws IOException {
|
||||||
|
sp.flushIOBuffers();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setInputListener(DataListener listener) {
|
public void setInputListener(DataListener listener) {
|
||||||
if (withListener) {
|
if (withListener) {
|
||||||
|
|
Loading…
Reference in New Issue