我正在尝试使用 usb4java(低级 API)与 USB 连接的科学仪器进行通信,该仪器在 Windows 上设置为 HID 设备(x86 和 x86_64)。有一个非常古老的 C++ 应用程序可以正常工作,但出于各种原因,我正在尝试用纯 Java 替换它。
我可以获得设备描述符并确定接口(interface)/端点,但异步传输永远不会发生(由 Device Monitoring Studio 检查)并且永远不会调用回调。 usb4java 没有抛出任何异常,并且不知道我是否可以访问 libusb 级别的任何日志(如果可能的话)。在处理硬件方面,我是一个完全的新手,所以它很可能是我所缺少的一些非常基本的东西。
只有一个端点,我不确定 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();
}
}
提前感谢您的任何建议。
最佳答案
首先:如果您不喜欢摆弄和干预,我建议您最好只使用已经提供的软件。前面还有很多工作要做,因为这是一种科学设备,它有可能会扰乱您的读数。
现在为什么这行不通:
有趣的是这 block bEndpointAddress 0x81 EP 1 IN。它告诉我们的是,有一个端点可以向主机发送数据。是的,您可以不写入此端点。这将等到设备有数据要发送并简单地覆盖您提供的缓冲区中的数据。
至于为什么会这样:您正在处理 HID。最好仔细阅读它,因为您不会简单地返回 ASCII 缓冲区,而是必须根据 HID 协议(protocol)进行解释的特殊格式的字节数组。
向此设备发送数据的唯一方法是在端点 0x00 上使用控制传输。
最简单的入门方法是使用带有 USB 嗅探器的 C++ 软件,并尝试理解来回传输的数据。
关于java - usb4java:无法进行数据传输,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39604836/
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
我正在尝试在我的centos服务器上安装therubyracer,但遇到了麻烦。$geminstalltherubyracerBuildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingtherubyracer:ERROR:Failedtobuildgemnativeextension./usr/local/rvm/rubies/ruby-1.9.3-p125/bin/rubyextconf.rbcheckingformain()in-lpthread...yescheckingforv8.h...no***e
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
我在pry中定义了一个函数:to_s,但我无法调用它。这个方法去哪里了,怎么调用?pry(main)>defto_spry(main)*'hello'pry(main)*endpry(main)>to_s=>"main"我的ruby版本是2.1.2看了一些答案和搜索后,我认为我得到了正确的答案:这个方法用在什么地方?在irb或pry中定义方法时,会转到Object.instance_methods[1]pry(main)>defto_s[1]pry(main)*'hello'[1]pry(main)*end=>:to_s[2]pry(main)>defhello[2]pry(main)
我使用的是Firefox版本36.0.1和Selenium-Webdrivergem版本2.45.0。我能够创建Firefox实例,但无法使用脚本继续进行进一步的操作无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055)错误。有人能帮帮我吗? 最佳答案 我遇到了同样的问题。降级到firefoxv33后一切正常。您可以找到旧版本here 关于ruby-无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055),我们在StackOverflow上找到一个类
当我尝试安装Ruby时遇到此错误。我试过查看this和this但无济于事➜~brewinstallrubyWarning:YouareusingOSX10.12.Wedonotprovidesupportforthispre-releaseversion.Youmayencounterbuildfailuresorotherbreakages.Pleasecreatepull-requestsinsteadoffilingissues.==>Installingdependenciesforruby:readline,libyaml,makedepend==>Installingrub