免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 17283 | 回复: 8
打印 上一主题 下一主题

usb_claim_interface 连接不成功 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-02-05 23:50 |只看该作者 |倒序浏览
我用LIBUSB做LINUX下的HID设备通迅, 打开设备都成功. 但到usb_claim_interface这一步时返回失败,

各位朋友有用过LIBUSB库的,麻烦共享一下经验.  说说有什么解决的方案, 一般这步不成功的原因都有那些.

在此多谢了.

论坛徽章:
0
2 [报告]
发表于 2011-02-11 09:03 |只看该作者
新年快乐

论坛徽章:
0
3 [报告]
发表于 2011-02-16 09:33 |只看该作者
把你调usb_claim_interface之前的操作也描述一下。

我最近操作过两个HID,usb_claim_interface都是成功的。

论坛徽章:
0
4 [报告]
发表于 2011-02-16 10:37 |只看该作者
先调用libusb_detach_kernel_driver , detach interface, 文档里没有的,呵呵, 私人送的, 试试吧。

论坛徽章:
0
5 [报告]
发表于 2011-04-01 17:58 |只看该作者
回复 4# kamingli


    想请问下 usb_detach_kernel_driver_np 失败是什么原因。

论坛徽章:
0
6 [报告]
发表于 2013-02-19 16:12 |只看该作者
同样的代码, 在2个不同的USB设备上, 1个成功, 1个错误, 邪门了.

static char device_open(void)
{
        struct usb_bus *bus;
        struct usb_device *dev;
        usb_dev_handle* device_handle;

  static int USBInitDone = 0;
  int i, iret = 0, ret;

  if (USBInitDone != 0) return 0;

        // initialize USB subsystem
        usb_init();
        usb_set_debug(0);
        usb_find_busses();
        usb_find_devices();

        for (i=0; i<MAX_PORTNUM; ++i)
          usbhnd[i] = NULL;

        DEBUGP("libusb demo begin, qiushui_007 test ok\n");
        for (bus = usb_get_busses(); bus; bus = bus->next) {
                for (dev = bus->devices; dev; dev = dev->next) {
                        DEBUGP("%s/%s     %04X/%04X\n", bus->dirname, dev->filename,
                                                dev->descriptor.idVendor, dev->descriptor.idProduct);
                        if (dev->descriptor.idVendor == VENDOR_ID && dev->descriptor.idProduct == PRODUCT_ID) {
                                DEBUGP("Find device \n");

                                device_handle = usb_open(dev);
                                iret = 1;
                                if (device_handle == NULL) {
                                        iret = 0;
                                }
                                else {
                                        ret = 0;
                                        ret = usb_detach_kernel_driver_np(device_handle, 0);
                                        DEBUGP("usb_detach_kernel_driver_np: ret %d\n", ret);

                                        ret = usb_set_configuration(device_handle, 1);
                                        DEBUGP("usb_set_configuration: ret %d\n", ret);
                                        if (ret < 0) {
                                                 perror("Failed to set configuration\n");
                                                 usb_close(device_handle);
                                    device_handle = NULL;
                                        }

                /* 在操作设备前是必须调用的, 0是指用默认的设备 */
                ret = usb_claim_interface(device_handle, 0);
                DEBUGP("usb_claim_interface: ret %d\n", ret);
                      if (ret < 0) {
                        perror("Cannot claim interface");
                        usb_close(device_handle);
                        device_handle = NULL;

                        return 0;
                      }

                                        break;
                                }
                        }
                }
        }

        USBInitDone = 1 ;
        usbhnd[g_portnum] = device_handle;

        return iret;
}

执行结果:
//---- DS2490测试
usb_detach_kernel_driver_np: ret -61
usb_set_configuration: ret 0
usb_claim_interface: ret 0

//--- CR95HF测试
usb_detach_kernel_driver_np: ret -22
usb_set_configuration: ret 0
usb_claim_interface: ret -2
Cannot claim interface: No such file or directory

论坛徽章:
0
7 [报告]
发表于 2013-12-09 15:14 |只看该作者
您好,最近我也在弄这方面的东西,我在使用usb_claim_interface() 刚插上设备第一次是失败的 返回 -16    ,但是我重新再执行一次 就成功了  返回 0

紧接着我就利用usb_interrupt_write()发送数据 然后就报 错:could not claim interface 0: Device or resource busy   错误码:-110

不知道什么原因  自己自己查 了 很久也没查出名堂来,希望能从您这得到解答, 谢谢,方面及时联系,如有必要加我qq吧:374125765
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP