我想使用bulkTransfer
功能在相机和Android平板电脑设备之间交换数据/命令。我写了这个Activity,但方法bulkTransfer
返回-1
(错误状态)。为什么会返回错误?
public class MainActivity extends Activity {
private TextView text;
private int TIMEOUT = 1000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (TextView) findViewById(R.id.txt);
usbTest();
}
private void usbTest() {
UsbDevice device = (UsbDevice) getIntent().getParcelableExtra(
UsbManager.EXTRA_DEVICE);
if (device == null)
text.setText("device null");
else
text.setText("device not null");
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
text.setText(text.getText() + "\nDevices connected: "
+ deviceList.values().size());
Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
while (deviceIterator.hasNext()) {
device = deviceIterator.next();
text.setText(text.getText() + "\nDevice name: "
+ device.getDeviceName());
text.setText(text.getText() + "\nDevice protocol: "
+ device.getDeviceProtocol());
text.setText(text.getText() + "\nDevice id: "
+ device.getDeviceId());
text.setText(text.getText() + "\nDevice product id: "
+ device.getProductId());
text.setText(text.getText() + "\nDevice vendor id: "
+ device.getVendorId());
text.setText(text.getText() + "\nDevice class: "
+ device.getDeviceClass());
text.setText(text.getText() + "\nDevice subclass: "
+ device.getDeviceSubclass());
text.setText(text.getText() + "\nDevice interface count: "
+ device.getInterfaceCount());
text.setText(text.getText() + "\n\n");
}
// communicate with device
UsbInterface intf = device.getInterface(0);
UsbEndpoint endpoint = intf.getEndpoint(0);
UsbDeviceConnection connection = manager.openDevice(device);
connection.claimInterface(intf, true);
for (int i = 0; i < intf.getEndpointCount(); i++) {
UsbEndpoint ep = intf.getEndpoint(i);
if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) {
if (ep.getDirection() == UsbConstants.USB_DIR_OUT) {
endpoint = ep;
text.setText("Found: "+i);
}
}
}
// byte[] opensession = { 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
// 0x10,
// 0x00, 0x00, 0x00, 0x00 };
// connection.bulkTransfer(endpoint, opensession, opensession.length,
// TIMEOUT);
byte[] getEvent = { 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, toByte(0xC7),
toByte(0x90), 0x00, 0x00, 0x00, 0x00 };
int status = connection.bulkTransfer(endpoint, getEvent,
getEvent.length, TIMEOUT);
//text.setText("Status: " + status);
byte[] capture = { 0x14, 0x00, 0x00, 0x00, 0x10, 0x00, 0x0E, 0x10,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00 };
connection.bulkTransfer(endpoint, capture, capture.length, TIMEOUT);
// teminate communication
BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (UsbManager.ACTION_USB_DEVICE_DETACHED.equals(action)) {
UsbDevice device = (UsbDevice) intent
.getParcelableExtra(UsbManager.EXTRA_DEVICE);
if (device != null) {
// call your method that cleans up and closes
// communication with the device
}
}
}
};
}
public static byte toByte(int c) {
return (byte) (c <= 0x7f ? c : ((c % 0x80) - 0x80));
}
}
答案 0 :(得分:1)
在提供的代码中有些错误的地方:a)首先需要使用事务ID 0进行OpenSession
请求,b)增加事务ID,c)从USB_DIR_IN
进行读取。
我的理解是,第一个请求应该打开与相机的会话,只有在此之后您才能使用GetEvent
请求。此外,您需要增加交易ID,并且仅将ID 0用于OpenSession
。在我为尼康相机找到的PTP规格的引言下面。
TransactionID是从0x00000001开始的数字顺序的连续序列。用于OpenSession操作的TransactionID为0x00000000。
我在Github上为Nikon和Canon应用程序开源了Android相机应用程序。该代码已有几年历史了。您将很难编译它,但是PTP代码可能是一个很好的参考。
答案 1 :(得分:0)
我怀疑您没有正确搜索接口和端点。
见下面的解释。
建议:测试端点是否有效并尝试将其与设备描述符匹配。
界面可以有多个设置。
AFAIK,对于相机,它们应该是相机界面的三个备用设置。
(我不知道实际的USB摄像头规格但是,这应该适用于USB上的所有流媒体协议(正如我在音频类中看到的那样))
您需要搜索批量备用设置,然后在其中的端点上执行通信。
答案 2 :(得分:0)
我认为这个函数没有传递正确的端点
int status = connection.bulkTransfer(endpoint, getEvent,
getEvent.length, TIMEOUT);
来自
UsbInterface intf = device.getInterface(0);
UsbEndpoint endpoint = intf.getEndpoint(0);
可能USB接口不正确。请检查索引0参数是否正确。
答案 3 :(得分:0)
检查USB端点方向。我遇到了一些设备,其中USB_DIR_OUT是USB_DIR_IN,USB_DIR_IN是USB_DIR_OUT,这会引起一些问题。