libusb 接口已声明

发布于 2024-11-15 18:49:03 字数 558 浏览 3 评论 0原文

我正在使用 libusb 为 USB 设备编写设备驱动程序。当我尝试认领该设备时,我收到错误代码 LIBUSB_ERROR_BUSY (-6)。根据文档,这意味着该设备已被认领(链接 )。

我如何找出哪个驱动程序/程序已声明该设备,更重要的是,我自己如何在设备声明后声明该设备。

代码片段:

r = libusb_claim_interface(handle[0], 0);
if (r < 0) {
    fprintf(stderr, "libusb_claim_interface error %d\n", r);
    goto out_release;
}
printf("claimed interface\n");

输出:

libusb_claim_interface error -6

I'm writing a device driver for a usb device using libusb. When I attempt to claim the device I get the error code LIBUSB_ERROR_BUSY (-6). According to the documentation that means that the device has already been claimed (link).

How do I find out which driver/program has claimed the device and more importantly, how can I, myself, claim the device once it's claimed.

Code snippet:

r = libusb_claim_interface(handle[0], 0);
if (r < 0) {
    fprintf(stderr, "libusb_claim_interface error %d\n", r);
    goto out_release;
}
printf("claimed interface\n");

Output:

libusb_claim_interface error -6

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

凤舞天涯 2024-11-22 18:49:03

您是否在 libusb_claim_interface() 之前调用 libusb_detach_kernel_driver() ?这可能是必要的。

Do you call libusb_detach_kernel_driver() before libusb_claim_interface()? This may be necessary.

尘世孤行 2024-11-22 18:49:03

该问题很可能是另一个 Linux 驱动程序声明了该接口。调用 libusb_detach_kernel_driver() 并指定接口号,然后您应该能够连接它。

The issue is most likely that interface is claimed by another Linux driver. call libusb_detach_kernel_driver() and specify the interface number and then you should be able to connect it.

っ〆星空下的拥抱 2024-11-22 18:49:03

您是否在 libusb_claim_interface() 之前调用了 libusb_set_configuration()

即使描述符中只有一种配置,也必须调用此函数。

Did you call libusb_set_configuration() before libusb_claim_interface()?

This must be called even if there is only one configuration in the descriptor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文