usb4java (低レベル API) を使用して、Windows (x86 と x86_64 の両方) で HID デバイスとして設定された USB 接続の科学機器と通信しようとしています。正常に動作する非常に古い C++ アプリケーションがありますが、さまざまな理由から純粋な Java に置き換えようとしています。
デバイス記述子を取得してインターフェイス/エンドポイントを特定できますが、非同期転送は発生せず (Device Monitoring Studio でチェック)、コールバックは呼び出されません。usb4java によって例外がスローされることはなく、libusb のレベルでログにアクセスできるかどうかもわかりません (可能であれば)。私はハードウェアを扱うのはまったくの初心者なので、本当に基本的なことを見逃しているかもしれません。
エンドポイントは 1 つしかなく、C++ コードが双方向通信をどのように管理したかはわかりません。すべての詳細はサードパーティのライブラリに埋もれているため、コード内で転送タイプについて明示的に言及されていません。
libusbK ドライバーをインストールし、高度な実装 (javax-usb) を試しました。転送はまだ完了していません。
以下は、エンドポイント記述子ダンプからの出力と、コードの短縮バージョンです。
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 8
bInterval 100
extralen 0
extra:
コードは次のとおりです。
import java.nio.*;
import java.util.*;
import org.usb4java.*;
/**
* This class is intended to test USB communication using usb4java
*
*/
public class Test {
private static final String vendorId = "VVV";
private static final String productId = "PPP";
private Context context;
private Device device;
private Handle handle;
static volatile boolean exit = false;
Object synchObj = new Object();
boolean readCompleted = false;
private static final int BUFFER_SIZE = 8;
private final byte[] idQuery = new byte[]{ 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 };
public Test(){
initialize();
if (device == null){
System.out.println("No target devices found");
System.exit(0);
}
boolean loop = true;
//claim interface 0
int result = LibUsb.claimInterface(handle, 0);
if (result != LibUsb.SUCCESS) throw new LibUsbException("Unable to claim interface", result);
//this code doesn't get executed because the transfer never completes correctly
final TransferCallback readCallback = new TransferCallback(){
public void processTransfer(Transfer transfer){
System.out.println(transfer.actualLength() + " bytes sent");
//read the response here
synchronized (synchObj){
readCompleted = true;
synchObj.notify();
}
}
};
//initial request writing the device identification query
write(handle, idQuery, readCallback);
//waiting for the write/response to complete
while (loop){
synchronized (synchObj){
while (!readCompleted){
try{
synchObj.wait();
}
catch (InterruptedException ex){
ex.printStackTrace();
}
}
}
readCompleted = false;
loop = false;
System.out.println("Completed reading");
}
result = LibUsb.releaseInterface(handle, 0);
LibUsb.close(handle);
}
private void initialize(){
try{
context = new Context();
int result = LibUsb.init(context);
if (result != LibUsb.SUCCESS) throw new LibUsbException("Unable to initialize libusb.", result);
DeviceList deviceList = new DeviceList();
result = LibUsb.getDeviceList(context, deviceList);
if (result < 0) throw new LibUsbException("Unable to get device list.", result);
for (int i = 0; i < deviceList.getSize(); i++){
Device dev = deviceList.get(i);
DeviceHandle h = new DeviceHandle();
int res = LibUsb.open(dev, h);
if (res != LibUsb.SUCCESS) continue;
DeviceDescriptor descriptor = new DeviceDescriptor();
result = LibUsb.getDeviceDescriptor(dev, descriptor);
if (result != LibUsb.SUCCESS) throw new LibUsbException("Unable to read device descriptor", result);
String dump = descriptor.dump(h);
if (dump.indexOf("PPP") > -1){
device = dev;
handle = h;
System.out.println("Found target device");
break;
}
}
}
catch (Exception ex){
ex.printStackTrace();
}
}
public static void write(DeviceHandle handle, byte[] data, TransferCallback callback){
ByteBuffer buffer = BufferUtils.allocateByteBuffer(data.length);
buffer.put(data);
Transfer transfer = LibUsb.allocTransfer();
LibUsb.fillInterruptTransfer(transfer, handle, (byte)0x81, buffer, callback, null, 1000);
System.out.println("Sending " + data.length + " bytes to device");
int result = LibUsb.submitTransfer(transfer);
if (result != LibUsb.SUCCESS) throw new LibUsbException("Unable to submit transfer", result);
}
public static void main(String[] args){
Test app = new Test();
}
}
ご提案いただきありがとうございます。