Skip to content

Commit

Permalink
add missing ChromeCcd setParameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kai-morich committed Oct 2, 2023
1 parent d585ca8 commit 11ccb5b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public UsbSerialDriver getDriver() {
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);
Expand Down

0 comments on commit 11ccb5b

Please sign in to comment.