mirror of
https://github.com/mik3y/usb-serial-for-android
synced 2025-06-08 00:16:13 +00:00
cdc driver: swallow exception for now.
This commit is contained in:
parent
b4b6d147ea
commit
f2ff56ba51
@ -106,7 +106,11 @@ public class CdcAcmSerialDriver implements UsbSerialDriver {
|
|||||||
timeoutMillis);
|
timeoutMillis);
|
||||||
|
|
||||||
if (transferred < 0) {
|
if (transferred < 0) {
|
||||||
throw new IOException("Timeout reading timeoutMillis=" + timeoutMillis);
|
// This sucks: we get -1 on timeout, not 0 as preferred.
|
||||||
|
// We *should* use UsbRequest, except it has a bug/api oversight
|
||||||
|
// where there is no way to determine the number of bytes read
|
||||||
|
// in response :\ -- http://b.android.com/28023
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
System.arraycopy(mReadBuffer, 0, dest, 0, transferred);
|
System.arraycopy(mReadBuffer, 0, dest, 0, transferred);
|
||||||
return transferred;
|
return transferred;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user