kopia lustrzana https://github.com/mik3y/usb-serial-for-android
added support to retrieve the device serial number
rodzic
dbdf95525e
commit
09c84a4a3c
|
@ -80,6 +80,15 @@ abstract class CommonUsbSerialPort implements UsbSerialPort {
|
||||||
return mPortNumber;
|
return mPortNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the device serial number
|
||||||
|
* @return serial number
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String getSerial() {
|
||||||
|
return mConnection.getSerial();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the size of the internal buffer used to exchange data with the USB
|
* Sets the size of the internal buffer used to exchange data with the USB
|
||||||
* stack for read operations. Most users should not need to change this.
|
* stack for read operations. Most users should not need to change this.
|
||||||
|
|
|
@ -91,6 +91,11 @@ public interface UsbSerialPort {
|
||||||
*/
|
*/
|
||||||
public int getPortNumber();
|
public int getPortNumber();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The serial number of the underlying UsbDeviceConnection, or {@code null}.
|
||||||
|
*/
|
||||||
|
public String getSerial();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Opens and initializes the port. Upon success, caller must ensure that
|
* Opens and initializes the port. Upon success, caller must ensure that
|
||||||
* {@link #close()} is eventually called.
|
* {@link #close()} is eventually called.
|
||||||
|
|
Ładowanie…
Reference in New Issue