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

add missing ChromeCcd setParameters

This commit is contained in:
kai-morich 2023-10-02 08:36:50 +02:00
parent d585ca8be7
commit 11ccb5b949

View File

@ -75,6 +75,11 @@ public class ChromeCcdSerialDriver implements UsbSerialDriver{
return ChromeCcdSerialDriver.this;
}
@Override
public void setParameters(int baudRate, int dataBits, int stopBits, int parity) throws IOException {
throw new UnsupportedOperationException();
}
@Override
public EnumSet<ControlLine> getControlLines() throws IOException {
return EnumSet.noneOf(ControlLine.class);