我有一个正在尝试编程的USB卡读卡器,而不是聚焦文本字段并将原始数据输入注入该字段。我希望能够监听数据。我阅读了Android API中的USB主机文档,并且还遵循了一些SO教程。我想我已经完成了所有工作,除了在听数据方面感到困惑。
我尝试了一个循环,看是否可以获取设备的IN和OUT端点,但是我只返回了1,导致我认为这是单向设备。
MainActivity.java
public class MainActivity extends AppCompatActivity implements Runnable {
private UsbManager manager;
private HashMap<String, UsbDevice> deviceList;
private Iterator<UsbDevice> deviceIterator;
private UsbDevice device;
private UsbInterface intf;
private UsbEndpoint endpoint;
private UsbDeviceConnection con;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onResume() {
super.onResume();
manager = (UsbManager) getSystemService(Context.USB_SERVICE);
deviceList = manager.getDeviceList();
deviceIterator = deviceList.values().iterator();
while(deviceIterator.hasNext()) {
device = deviceIterator.next();
intf = device.getInterface(0);
endpoint = intf.getEndpoint(0);
con = manager.openDevice(device);
if(null == con) {
Log.e("FAIL: ", "Couldn't connect to device");
}
else {
con.claimInterface(intf, true);
}
}
setDevice(device);
}
protected void onDestroy() {
super.onDestroy();
}
private void setDevice(UsbDevice device) {
this.device = device;
if(device.getInterfaceCount() != 1) {
Log.e("ERROR: ", "Could not find interface!");
return;
}
if(intf.getEndpointCount() != 1) {
Log.e("ERROR: ", "Could not find endpoint!");
return;
}
if(endpoint.getType() != UsbConstants.USB_ENDPOINT_XFER_INT) {
Log.e("ERROR: ", "Endpoint is not type interrupt");
return;
}
if(device != null) {
Thread t = new Thread(this);
t.start();
}
}
public void run() {
byte[] buffer = new byte[11];
//i've tried multiple variations of this and still no luck.
int resp = con.controlTransfer(UsbConstants.USB_ENDPOINT_XFER_INT, 00, 00, 0, buffer, 11, 0);
Log.i("RESPONSE: ", "" + resp);
}
}
device_filter.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- Should be the IDs for MagTek SCRA Scanner -->
<resources>
<usb-device vendor-id="0801" product-id="1" class="0" subclass="0" protocol="0"/>
<usb-device vendor-id="2049" product-id="1" class="0" subclass="0" protocol="0"/>
</resources>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="valhala.io.usbdbg" >
<uses-feature android:name="android.hardware.usb.host"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter"/>
</activity>
</application>
</manifest>
编辑:事实证明我的设备使用了INTERRUPT端点。 我将如何发送命令以获取卡数据?另外,如何以不经常在线程上监听和休眠的方式实现它? AsyncTask可以工作吗?
作为参考,但是我不确定它们在controlTransfer()
命令中的编号。
编辑:很遗憾,我使用的读卡器上绝对没有识别标记,但是基于供应商ID,我认为这实际上是正确的文档。我将保留第二个以供参考。
Vendor ID: 0801
Product ID: 0001
https://www.magtek.com/content/documentationfiles/d99875206.pdf
public int controlTransfer (int requestType, int request, int value,
int index, byte[] buffer, int length, int timeout)
所以我尝试了以下操作:
con.controlTransfer(UsbConstants.USB_ENDPOINT_XFER_INT, 0, 0x00, 0, buffer, 11, 0)
返回-1,也不会在缓冲区中放入任何内容。
编辑:我在另一台计算机上“运行”它。但是,当我发送get命令时,所有响应都说它是成功的,但是不返回任何数据。左侧的窗口是随设备“附带”的软件,它使您可以对一些东西进行重新编程,但是MagTek程序不执行任何操作,即使根据设备描述符声称它们是供应商,也是如此。我特别是使用此扫描仪的SOL吗?