console connectivity on specific Win11 device #3923

well nice call but no difference for our specific issue
This commit is contained in:
rusefillc 2022-02-11 23:10:14 -05:00
parent 94e5957271
commit 837d228159
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,8 @@ import com.rusefi.binaryprotocol.test.Bug3923;
import com.rusefi.io.IoStream;
import org.jetbrains.annotations.NotNull;
import java.io.IOException;
import static com.devexperts.logging.Logging.getLogging;
public class SerialIoStream extends AbstractIoStream {
@ -59,6 +61,11 @@ public class SerialIoStream extends AbstractIoStream {
sp.writeBytes(bytes, bytes.length);
}
@Override
public void flush() throws IOException {
sp.flushIOBuffers();
}
@Override
public void setInputListener(DataListener listener) {
if (withListener) {