- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试通过 usb4java api 从 USB 设备读取,但出现错误:
USB 错误 5:无法读取数据:找不到实体
有谁能够帮助我?
必须注意的是,endpoint_in 我从 LibUsb.ENDPOINT_IN 获取它并将其传递给读取功能找到的设备已被声明,但我无法继续从设备中读取。
My code is given below:
import java.io.IOException;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.IntBuffer;
import javax.swing.JOptionPane;
import org.usb4java.BufferUtils;
import org.usb4java.Context;
import org.usb4java.Device;
import org.usb4java.DeviceDescriptor;
import org.usb4java.DeviceHandle;
import org.usb4java.DeviceList;
import org.usb4java.LibUsb;
import org.usb4java.LibUsbException;
public class Test {
private static byte endpoint;
// private static final byte IN_ENDPOINT = 0;
private static Device device;
private static Context context = new Context();
private static DeviceHandle handle;
public static void main(String[] args) {
// Create the libusb context
LibUsb.init(null);
findDevice(context, (short) (0x046D), (short) (0xC016));
// Deinitialize the libusb context
LibUsb.exit(context);
}
public static void findDevice(Context context, short vendorId, short productId) {
// Initialize the libusb context
int result = LibUsb.init(context);
if (result < 0) {
throw new LibUsbException("Unable to initialize libusb", result);
}
// Read the USB device list
DeviceList list = new DeviceList();
result = LibUsb.getDeviceList(context, list);
if (result < 0) {
throw new LibUsbException("Unable to get device list", result);
}
try {
// Iterate over all devices and list them
for (Device device : list) {
int address = LibUsb.getDeviceAddress(device);
int busNumber = LibUsb.getBusNumber(device);
DeviceDescriptor descriptor = new DeviceDescriptor();
result = LibUsb.getDeviceDescriptor(device, descriptor);
if (result < 0) {
throw new LibUsbException(
"Unable to read device descriptor", result);
}
System.out.format(
"Bus %03d, Device %03d: Vendor %04x, Product %04x%n",
busNumber, address, descriptor.idVendor(),
descriptor.idProduct());
if (result != LibUsb.SUCCESS) {
throw new LibUsbException("Unable to read device descriptor", result);
}
if (descriptor.idVendor() == vendorId && descriptor.idProduct() == productId) {
System.out.println("Device Found");
getDeviceHandle(device);
LibUsb.claimInterface(handle, 0);
}
}
} finally {
// Ensure the allocated device list is freed
LibUsb.freeDeviceList(list, true);
}
}
public static void getDeviceHandle(Device device) {
endpoint = (byte)LibUsb.getDeviceAddress(device);
handle = new DeviceHandle();
JOptionPane.showMessageDialog(null, "endpoint="+endpoint);
int result = LibUsb.open(device, handle);
if (result != LibUsb.SUCCESS) {
throw new LibUsbException("Unable to open USB device", result);
}
try {
// Use device handle here
claimDevice(handle, 0);
} finally {
LibUsb.close(handle);
}
}
public static void claimDevice(DeviceHandle handle, int interfaceNumber) {
int result = LibUsb.claimInterface(handle, interfaceNumber);
if (result != LibUsb.SUCCESS) {
throw new LibUsbException("Unable to claim interface", result);
}
try {
System.out.println("Device Claimed");
//sendData(handle);
// read(handle,1000);
JOptionPane.showMessageDialog(null, "interface="+interfaceNumber);
read(handle, 2048);
} finally {
result = LibUsb.releaseInterface(handle, interfaceNumber);
if (result != LibUsb.SUCCESS) {
throw new LibUsbException("Unable to release interface", result);
}
}
}
@SuppressWarnings("unused")
public static void sendData(DeviceHandle handle) {
char[] initEP = new char[]{0x1b, '@'};
char[] cutPaper = new char[]{0x1d, 'V', 1};
String initStr = new String(initEP);
String cutStr = new String(cutPaper);
String text = "blabla \n\n\n";
ByteBuffer buffer = ByteBuffer.allocateDirect(8);
buffer.put(new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 });
// SEND INIT BYTE
int transfered = LibUsb.controlTransfer(handle,
(byte) (LibUsb.REQUEST_TYPE_CLASS | LibUsb.RECIPIENT_INTERFACE),
(byte) 0x01, (short) 2, (short) 1, buffer, 5000);
if (transfered < 0) {
throw new LibUsbException("Control transfer failed", transfered);
}
// SENDT TEXT
buffer = ByteBuffer.wrap(text.getBytes());
transfered = LibUsb.controlTransfer(handle,
(byte) (LibUsb.REQUEST_TYPE_CLASS | LibUsb.RECIPIENT_INTERFACE),
(byte) 0x01, (short) 2, (short) 1, buffer, 5000);
if (transfered < 0) {
throw new LibUsbException("Control transfer failed", transfered);
}
/* // SENDT CUT BYTE
buffer = ByteBuffer.wrap(text.getBytes());
transfered = LibUsb.controlTransfer(handle,
(byte) (LibUsb.REQUEST_TYPE_CLASS | LibUsb.RECIPIENT_INTERFACE),
(byte) 0x09, (short) 2, (short) 1, buffer, 5000);
if (transfered < 0) {
throw new LibUsbException("Control transfer failed", transfered);
} */
System.out.println(transfered + " bytes sent");
}
public static ByteBuffer read(DeviceHandle handle, int size)
{
ByteBuffer buffer = BufferUtils.allocateByteBuffer(size).order(ByteOrder.LITTLE_ENDIAN);
IntBuffer transferred = BufferUtils.allocateIntBuffer();
// IntBuffer transferred = BufferUtils.allocateIntBuffer();
long TIMEOUT = 5000;
JOptionPane.showMessageDialog(null, "endpoint_in="+ LibUsb.ENDPOINT_IN);
JOptionPane.showMessageDialog(null, "endpoint_out="+ LibUsb.ENDPOINT_OUT);
JOptionPane.showMessageDialog(null, "handle="+handle);
int result = LibUsb.bulkTransfer(handle, (byte)-128, buffer,
transferred, TIMEOUT);
JOptionPane.showMessageDialog(null, result);
if (result != LibUsb.SUCCESS)
{
throw new LibUsbException("Unable to read data", result);
}
else{System.out.println(transferred.get() + " bytes read from device");
}
return buffer;
}
In order to write i use this code (the write function that I call in my main function):
String text="p";
//ByteBuffer buffer = ByteBuffer.wrap(text.getBytes());
IntBuffer transferred = BufferUtils.allocateIntBuffer();
long TIMEOUT = 5000;
int result = LibUsb.bulkTransfer(handle, (byte) 0x01, buffer,
transferred, TIMEOUT);
if (result != LibUsb.SUCCESS)
{
throw new LibUsbException("Unable to write data", result);
}
else{System.out.println(transferred.get() + " bytes written to the device");
}
return buffer;
}
Why the entity is not found since I use endpoint 0x01...
最佳答案
关于usb4java - 我尝试从 USB 设备读取我收到 USB 错误 5 : Unable to read data: Entity not found can someone help me?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37674969/
我在一本名为 "USB in a NutShell" 的相当棒的书中找到了中断传输提供可靠的传输(通过错误检测和自动重试)。 但我想知道,这能保证有一天不会按顺序交换转移吗?至于总线是串行的,我的猜测
USB 2.0 specifies 4 种传输类型(在第 5.4 节传输类型中): 控制转移 同步传输 中断传输 批量转账 第 5.8 节说批量传输提供: Access to the USB on a
在我正在研究的 SoC 中,有 USB EHCI 兼容 Controller 。 所有 EHCI Controller 都可以作为主机或设备工作吗? EHCI Linux 驱动程序是否涵盖此类 Con
我有一个 USB 调制解调器,它经常掉线。发生这种情况时,我将其从 USB 端口拔出并重新插入,它会立即返回信号;我可以编写一个程序来执行此操作而无需物理断开调制解调器与端口的连接吗? 最佳答案 正如
我正在尝试使用 libusb 与 USB 设备通信,但我觉得自己在比赛的第一站被绊倒了。我确切地知道我需要与哪些端点交谈,等等,但我什至做不到那么远。本质上,我有: usb_device *dev =
是否有工具可以验证在枚举过程中读取的 USB 设备描述符?我遇到过这样的情况,我购买的设备(实验室设备)的 USB 设备描述符不是很有效,并且无法被操作系统正确识别为“加载设备描述符失败”。我知道这并
我正在从事一个需要将信号从外部世界传输到计算机的项目。我有一个生成模拟信号的源,这个信号需要通过 USB 在 PC 上传输。这是我的问题:什么是接口(interface)? 我从源头获得的模拟信号,是
我想知道降低/提高 USB 端口的输出功率在技术上是否可行? 我自己也持怀疑态度,但我要求确定。 最佳答案 如上所述,是的。要获得超过 500mA (USB 2.0) 的电流,请使用组合电缆并联两个或
我正在尝试制作一个 HID USB 设备。我搜索了一下,发现键盘的输出有 8 个字节。第一个字节是修饰符,第二个字节是保留字节,其余 6 个字节是关键代码。我认为在某些情况下,例如“prtsc”,需要
我们正在寻找一个虚拟 USB 链接模拟器;这个程序或服务应该 链接虚拟COM port到仅接受 USB 作为数据链路的应用程序。 virtual COM port是 VSPE来自 Eterlogic
我一直在尝试监视何时插入或移除 USB 设备,它似乎工作得很好。现在唯一困扰我的是,每次我插入或移除设备时,都会多次触发该事件。 我可以毫无问题地将事件分组,但我很好奇为什么它首先发生。 这是我正在使
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 6年前关闭。 Improve this questi
我正在为 USB 设备编写代码。假设 USB 主机开始控制读取传输以从设备读取一些数据,并且请求的数据量(设置数据包中的 wLength)是端点 0 最大数据包大小的倍数。那么在主机接收到所有数据后(
我们正在开发一个带有 arm7(current: LPC2368) 的发送器设备。 本设备采样一个 mv 信号,A/D,并需要将此信号数据发送到 PC。(连续) 同时,PC 需要向 arm7 发送命令
我希望能够使用通过 USB 连接到 PC 的 IR 远程传感器打开和关闭我的 PC。该传感器是使用 AVR 微处理器和 V-USB 软件 USB 实现实现的定制 PCB。 现在,用软件关掉电脑是没有问
我正在使用 STM32L151 与使用 USB CDC 的 PC 进行通信。我使用 STM32 HAL 库来创建我的项目。 我发现 USB 以 1 ms 的间隔发送数据,每次发送 64 个字节。那么,
我们有一个设备要求我们在插入之前安装驱动程序,否则我们需要删除 Windows 8 和 10 自动下载的驱动程序。 我们如何制作一个无论先插还是不插都能正确安装的USB驱动安装器? 最佳答案 在 Wi
我需要填充 USB 存储器,我希望其他人能够以简单的方式重复此操作。所以我不想写“找到一个填满内存的文件”,所以他们必须四处寻找这样的文件。 我想生成 X MB 的数据并将其写入一个文件,然后可以将其
我有一个 Android 平板电脑,它有一个迷你 USB 端口和一个 USB 端口,我想编写一个与 USB key 通信的应用程序。我写了一个demo来找出U盘,但是没有任何反应。 令我不安的是,如果
我正在尝试使用 Android USB Host API 读取我的 USB 游戏 Controller 数据,一旦我让它工作,我将连接其他设备进行测试。我的游戏 Controller 使用 OTG 线
我是一名优秀的程序员,十分优秀!