打印
[STM32F1]

虚拟串口+hid

[复制链接]
4617|6
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
yang4469|  楼主 | 2014-3-29 18:16 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我参考这个帖子里面https://bbs.21ic.com/forum.php?mod=viewthread&tid=554720,想做一个vcp+hid复合设备
分开的两个hid和vcp都没问题,端点地址,端点设置都已经整合,能枚举出复合设备
驱动包INF文件对应+MI_01,PC端安装驱动后有感叹号。hid没问题,能够正常通信,vcp不行。
奇怪之处在于我将hid和vcp的配置顺序互换,pc驱动改为+MI_00后,vcp正常通信,hid不行
设备描述符
const uint8_t Virtual_Com_Port_DeviceDescriptor[] =
  {
    0x12,   /* bLength */
    USB_DEVICE_DESCRIPTOR_TYPE,     /* bDescriptorType */
    0x00,
    0x02,   /* bcdUSB = 2.00 */
          
          /*******************************/
    0xef,   // bDeviceClass : each interface define the device class
    0x02,   // bDeviceSubClass
    0x01,   // bDeviceProtocol
    0x40,   /* bMaxPacketSize0 */
    0x83,
    0x04,   /* idVendor = 0x0483 */
    0x66,
    0x75,   /* idProduct = 0x7564 */
    0x00,
    0x02,   /* bcdDevice = 2.00 */
    1,              /* Index of string descriptor describing manufacturer */
    2,              /* Index of string descriptor describing product */
    3,              /* Index of string descriptor describing the device's serial number */
    0x01    /* bNumConfigurations */
  };
配置描述符
const uint8_t Virtual_Com_Port_ConfigDescriptor[VIRTUAL_COM_PORT_SIZ_CONFIG_DESC] =
  {
    /*Configuration Descriptor*/
    0x09,   /* bLength: Configuration Descriptor size */
    USB_CONFIGURATION_DESCRIPTOR_TYPE,      /* bDescriptorType: Configuration */
    VIRTUAL_COM_PORT_SIZ_CONFIG_DESC,       /* wTotalLength:no of returned bytes */
    0x00,
    0x03,   /* bNumInterfaces: 3interface */
    0x01,   /* bConfigurationValue: Configuration value */
    0x00,   /* iConfiguration: Index of string descriptor describing the configuration */
    0xC0,   /* bmAttributes: self powered */
    0x32,   /* MaxPower 0 mA */
    /*Interface Descriptor*/
          
        0x08,        //描述符大小
    0x0B,        //IAD描述符类型
    0x00,        // bFirstInterface
    0x01,        // bInterfaceCount
    0x03,        // bFunctionClass:HID
    0x00,        // bFunctionSubClass
    0x00,        // bFunctionProtocol
    0x05,        // iFunction
          

          
    /************** Descriptor of Custom HID interface ****************/
    /* 18*/
    0x09,         /* bLength: Interface Descriptor size */
    0x04,/* bDescriptorType: Interface descriptor type */
    0x00,         /* bInterfaceNumber: Number of Interface */
    0x00,         /* bAlternateSetting: Alternate setting */
    0x02,         /* bNumEndpoints */
    0x03,         /* bInterfaceClass: HID */
    0x00,         /* bInterfaceSubClass : 1=BOOT, 0=no boot */
    0x00,         /* nInterfaceProtocol : 0=none, 1=keyboard, 2=mouse */
    0,            /* iInterface: Index of string descriptor */
       
         /******************** Descriptor of Custom HID HID ********************/
    /* 27 */
    0x09,         /* bLength: HID Descriptor size */
    0x21, /* bDescriptorType: HID */
    0x00,         /* bcdHID: HID Class Spec release number */
    0x01,
    0x00,         /* bCountryCode: Hardware target country */
    0x01,         /* bNumDescriptors: Number of HID class descriptors to follow */
    0x22,         /* bDescriptorType */
    CustomHID_SIZ_ReportDescriptor,/* wItemLength: Total length of Report descriptor */
    0x00,
    /******************** Descriptor of Custom HID endpoints ******************/
    /* 34 */
    0x07,          /* bLength: Endpoint Descriptor size */
    0x05, /* bDescriptorType: */

    0x81,          /* bEndpointAddress: Endpoint Address (IN) */
    0x03,          /* bmAttributes: Interrupt endpoint */
    0x08,          /* wMaxPacketSize: 2 Bytes max */
    0x00,
    0x20,          /* bInterval: Polling Interval (32 ms) */
    /* 41 */
           
    0x07,        /* bLength: Endpoint Descriptor size */
    0x05,        /* bDescriptorType: */
                        /*        Endpoint descriptor type */
    0x01,        /* bEndpointAddress: */
                        /*        Endpoint Address (OUT) */
    0x03,        /* bmAttributes: Interrupt endpoint */
    0x08,        /* wMaxPacketSize: 2 Bytes max  */
    0x00,
    0x20,        /* bInterval: Polling Interval (20 ms) */

          
          
        0x08,        // 描述符大小
    0x0B,        // IAD描述符类型
    0x01,        // bFirstInterface
    0x02,        // bInterfaceCount
    0x02,        // bFunctionClass: CDC Class
    0x02,        // bFunctionSubClass
    0x01,        // bFunctionProtocol
    0x04,        // iFunction


    0x09,   /* bLength: Interface Descriptor size */
    USB_INTERFACE_DESCRIPTOR_TYPE,  /* bDescriptorType: Interface */
    /* Interface descriptor type */
    0x01,   /* bInterfaceNumber: Number of Interface */
    0x00,   /* bAlternateSetting: Alternate setting */
    0x01,   /* bNumEndpoints: One endpoints used */
    0x02,   /* bInterfaceClass: Communication Interface Class         CDC接口*/
    0x02,   /* bInterfaceSubClass: Abstract Control Model */
    0x01,   /* bInterfaceProtocol: Common AT commands */
    0x00,   /* iInterface: */
    /*Header Functional Descriptor*/
    0x05,   /* bLength: Endpoint Descriptor size */
    0x24,   /* bDescriptorType: CS_INTERFACE */
    0x00,   /* bDescriptorSubtype: Header Func Desc */
    0x10,   /* bcdCDC: spec release number */
    0x01,
    /*Call Management Functional Descriptor*/
    0x05,   /* bFunctionLength */
    0x24,   /* bDescriptorType: CS_INTERFACE */
    0x01,   /* bDescriptorSubtype: Call Management Func Desc */
    0x00,   /* bmCapabilities: D0+D1 */
    0x02,   /* bDataInterface: 2 */
    /*ACM Functional Descriptor*/
    0x04,   /* bFunctionLength */
    0x24,   /* bDescriptorType: CS_INTERFACE */
    0x02,   /* bDescriptorSubtype: Abstract Control Management desc */
    0x02,   /* bmCapabilities */
    /*Union Functional Descriptor*/
    0x05,   /* bFunctionLength */
    0x24,   /* bDescriptorType: CS_INTERFACE */
    0x06,   /* bDescriptorSubtype: Union func desc */
    0x01,   /* bMasterInterface: Communication class interface */
    0x02,   /* bSlaveInterface0: Data Class Interface */
    /*Endpoint 2 Descriptor*/
    0x07,   /* bLength: Endpoint Descriptor size */
    USB_ENDPOINT_DESCRIPTOR_TYPE,   /* bDescriptorType: Endpoint */
    0x82,   /* bEndpointAddress: (IN2) */
    0x03,   /* bmAttributes: Interrupt */
    VIRTUAL_COM_PORT_INT_SIZE,      /* wMaxPacketSize: */
    0x00,
    0xFF,   /* bInterval: */
    /*Data class interface descriptor*/
    0x09,   /* bLength: Endpoint Descriptor size */
    USB_INTERFACE_DESCRIPTOR_TYPE,  /* bDescriptorType: */
    0x02,   /* bInterfaceNumber: Number of Interface */
    0x00,   /* bAlternateSetting: Alternate setting */
    0x02,   /* bNumEndpoints: Two endpoints used */
    0x0A,   /* bInterfaceClass: CDC */
    0x00,   /* bInterfaceSubClass: */
    0x00,   /* bInterfaceProtocol: */
    0x00,   /* iInterface: */
    /*Endpoint 3 Descriptor*/
    0x07,   /* bLength: Endpoint Descriptor size */
    USB_ENDPOINT_DESCRIPTOR_TYPE,   /* bDescriptorType: Endpoint */
    0x03,   /* bEndpointAddress: (OUT3) */
    0x02,   /* bmAttributes: Bulk */
    VIRTUAL_COM_PORT_DATA_SIZE,             /* wMaxPacketSize: */
    0x00,
    0x00,   /* bInterval: ignore for Bulk transfer */
    /*Endpoint 1 Descriptor*/
    0x07,   /* bLength: Endpoint Descriptor size */
    USB_ENDPOINT_DESCRIPTOR_TYPE,   /* bDescriptorType: Endpoint */
    0x84,   /* bEndpointAddress: (IN1) */
    0x02,   /* bmAttributes: Bulk */
    VIRTUAL_COM_PORT_DATA_SIZE,             /* wMaxPacketSize: */
    0x00,
    0x00,    /* bInterval */       
  };

沙发
yang4469|  楼主 | 2014-3-31 10:43 | 只看该作者
当用官网的VID/PID,更新后驱动后蓝屏,泪奔。。。。

使用特权

评论回复
板凳
yang4469|  楼主 | 2014-4-1 13:10 | 只看该作者
解决了,原来是系统问题,重新装了个完整系统,vcp的驱动是调用系统文件安装

使用特权

评论回复
地板
yang4469|  楼主 | 2014-4-2 11:33 | 只看该作者
更正:HID不需要添加IAD描述符

使用特权

评论回复
5
xiake26| | 2014-9-13 17:55 | 只看该作者
楼主能分享一下你最后用的驱动文件吗?我也改了一个,但是只能识别hid鼠标,串口不能正确识别。

stmcdc.zip

753 Bytes

使用特权

评论回复
6
yang4469|  楼主 | 2014-9-16 15:09 | 只看该作者
xiake26 发表于 2014-9-13 17:55
楼主能分享一下你最后用的驱动文件吗?我也改了一个,但是只能识别hid鼠标,串口不能正确识别。 ...

我就用的官网的驱动,系统最好是msdn的原版非删减系统,更改vid、pid时,记得添加_MI00(如果虚拟串口的IAD序号为0)

使用特权

评论回复
7
zjwyczj| | 2014-10-16 10:40 | 只看该作者
本帖最后由 zjwyczj 于 2014-10-16 13:55 编辑

不错

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

15

主题

267

帖子

0

粉丝