XOOMにOTGケーブルで接続した外部ストレージのファイルシステムをICSで読み込むアプリケーションを作ろうとしています。このコードを使用して、フラッシュ デバイスとの通信の IN および OUT エンドポイントを決定しています
final UsbDeviceConnection connection = manager.openDevice(device);
UsbInterface inf = device.getInterface(0);
if (!connection.claimInterface(inf, true)) {
Log.v("USB", "failed to claim interface");
}
UsbEndpoint epOut = null;
UsbEndpoint epIn = null;
// look for our bulk endpoints
for (int i = 0; i < inf.getEndpointCount(); i++) {
UsbEndpoint ep = inf.getEndpoint(i);
if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) {
if (ep.getDirection() == UsbConstants.USB_DIR_OUT) {
epOut = ep;
} else {
epIn = ep;
}
}
}
if (epOut == null || epIn == null) {
throw new IllegalArgumentException("not all endpoints found");
}
final UsbEndpoint inEndPoint = epIn;
それは正常に動作します。次に、最初の 512 バイトを読み取って FAT32 ブート セクタを取得しようとしています
ByteBuffer arg1 = ByteBuffer.allocate(512);
UsbRequest request = new UsbRequest();
request.initialize(connection, inEndPoint);
request.queue(arg1, inEndPoint.getMaxPacketSize());
UsbRequest result = connection.requestWait(); // halt here
connection.releaseInterface(inf);
connection.close();
ただし、接続されたデバイスからデータを読み取ることはありません。このコードはすべて、デバイスで権限を付与した後、別のスレッドで実行されます
PendingIntent mPermissionIntent = PendingIntent.getBroadcast(USBHostSampleActivity.this, 0, new Intent(ACTION_USB_PERMISSION), 0);
IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
registerReceiver(mUsbReceiver, filter);
manager.requestPermission(lDevices.get(position),mPermissionIntent);
ブロードキャストレシーバーでは、前のコードで新しいスレッドを開始するだけです。私もUSBDeviceConnection.controlTransferを呼び出そうとし ました
byte[] b = new byte[0x10];
int cTransfer = connection.controlTransfer(128, 6, 16, 0,b, 12, 0);
f0データおよび/またはhwstatsを取得するためのlibusbサンプルのように、常に-1を返します。また、USBRequstを使用して非同期要求を置き換えてbulkTransfersを同期しようとしましたが、結果は同じです。Android SDK のこの部分を扱った人はいますか? ありがとう!