-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GSM modem usb serial driver support
- Loading branch information
Showing
4 changed files
with
135 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
usbSerialForAndroid/src/main/java/com/hoho/android/usbserial/driver/GsmSerialDriver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
package com.hoho.android.usbserial.driver; | ||
|
||
import android.hardware.usb.UsbConstants; | ||
import android.hardware.usb.UsbDevice; | ||
import android.hardware.usb.UsbEndpoint; | ||
import android.hardware.usb.UsbInterface; | ||
import android.util.Log; | ||
|
||
import java.io.IOException; | ||
import java.util.Collections; | ||
import java.util.EnumSet; | ||
import java.util.LinkedHashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class GsmSerialDriver implements UsbSerialDriver{ | ||
|
||
private static final String TAG = "GsmSerialDriver"; | ||
private final UsbDevice mDevice; | ||
|
||
private final UsbSerialPort mPort; | ||
|
||
private UsbInterface mControlInterface; | ||
private UsbInterface mDataInterface; | ||
private UsbEndpoint mControlEndpoint; | ||
|
||
private int mControlIndex; | ||
private static final int SET_CONTROL_LINE_STATE = 0x22; | ||
|
||
@Override | ||
public UsbDevice getDevice() { | ||
return mDevice; | ||
} | ||
|
||
@Override | ||
public List<UsbSerialPort> getPorts() { | ||
return Collections.singletonList(mPort); | ||
} | ||
|
||
public GsmSerialDriver(UsbDevice mDevice) { | ||
this.mDevice = mDevice; | ||
mPort = new GsmSerialDriver.GsmSerialPort(mDevice, 0); | ||
} | ||
|
||
public class GsmSerialPort extends CommonUsbSerialPort { | ||
|
||
public GsmSerialPort(UsbDevice device, int portNumber) { | ||
super(device, portNumber); | ||
} | ||
|
||
@Override | ||
protected void openInt() throws IOException { | ||
mControlIndex = 0; | ||
mControlInterface = mDevice.getInterface(0); | ||
mDataInterface = mDevice.getInterface(0); | ||
if (!mConnection.claimInterface(mControlInterface, true)) { | ||
throw new IOException("Could not claim shared control/data interface"); | ||
} | ||
Log.i(TAG, "endpointcount "+ mControlInterface.getEndpointCount()); | ||
for (int i = 0; i < mControlInterface.getEndpointCount(); ++i) { | ||
UsbEndpoint ep = mControlInterface.getEndpoint(i); | ||
Log.i(TAG, ep.toString() + "dir "+ ep.getDirection() + " type " + ep.getType()); | ||
if ((ep.getDirection() == UsbConstants.USB_DIR_IN) && (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_INT)) { | ||
mControlEndpoint = ep; | ||
} else if ((ep.getDirection() == UsbConstants.USB_DIR_IN) && (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK)) { | ||
mReadEndpoint = ep; | ||
} else if ((ep.getDirection() == UsbConstants.USB_DIR_OUT) && (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK)) { | ||
mWriteEndpoint = ep; | ||
} | ||
} | ||
sendGsmControlMessage(SET_CONTROL_LINE_STATE, 0x01, null); | ||
|
||
} | ||
|
||
@Override | ||
protected void closeInt() { | ||
try { | ||
mConnection.releaseInterface(mControlInterface); | ||
mConnection.releaseInterface(mDataInterface); | ||
} catch(Exception ignored) {} | ||
|
||
} | ||
|
||
private int sendGsmControlMessage(int request, int value, byte[] buf) throws IOException { | ||
int len = mConnection.controlTransfer( | ||
0x21, request, value, mControlIndex, buf, buf != null ? buf.length : 0, 5000); | ||
if(len < 0) { | ||
throw new IOException("controlTransfer failed"); | ||
} | ||
return len; | ||
} | ||
|
||
@Override | ||
public UsbSerialDriver getDriver() { | ||
return GsmSerialDriver.this; | ||
} | ||
|
||
@Override | ||
public void setParameters(int baudRate, int dataBits, int stopBits, int parity) throws IOException { | ||
} | ||
|
||
@Override | ||
public EnumSet<ControlLine> getControlLines() throws IOException { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public EnumSet<ControlLine> getSupportedControlLines() throws IOException { | ||
throw new UnsupportedOperationException(); | ||
} | ||
} | ||
|
||
public static Map<Integer, int[]> getSupportedDevices() { | ||
final Map<Integer, int[]> supportedDevices = new LinkedHashMap<>(); | ||
supportedDevices.put(UsbId.VENDOR_UNISOC, new int[]{ | ||
UsbId.FIBO_L610, | ||
UsbId.FIBO_L612, | ||
}); | ||
return supportedDevices; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters