5135|8

72

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

STM32USB2个接口描述符的问题 [复制链接]

                                 在一个接口描述符工作正常,,在这个基础是增加一个接口描述符,HID描述符,Endpoint描述符,就不行了,没法枚举,这是为什么?》
此帖出自stm32/stm8论坛

最新回复

                                 PC就没有读配置描述符了  详情 回复 发表于 2011-3-15 11:43
点赞 关注
 

回复
举报

55

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
把你改后的描述符贴出来看看

有没有申明是USB复合设备,具有2个借口描述符?
此帖出自stm32/stm8论坛
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

板凳
 


/* USB Configuration Descriptor */
/*   All Descriptors (Configuration, Interface, Endpoint, Class, Vendor */
const u8 ConfigDescriptor[CONFIG_DESC] =
  {
    0x09, /* bLength: Configuation Descriptor size */
    USB_CONFIGURATION_DESCRIPTOR_TYPE, /* bDescriptorType: Configuration */
    CONFIG_DESC,
    /* wTotalLength: Bytes returned */
    0x00,
    0x01,// 0x02,         /*bNumInterfaces: 2 interface*/
    0x01,         /*bConfigurationValue: Configuration value*/
    0x00,         /*iConfiguration: Index of string descriptor describing
                                     the configuration*/
    0xe0,         /*bmAttributes: bus powered */
    0x32,         /*MaxPower 100 mA: this current is used for detecting Vbus*/
   
    /************** Descriptor interface ****************/
    /* 09 */
    0x09,         /*bLength: Interface Descriptor size*/
    USB_INTERFACE_DESCRIPTOR_TYPE,/*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*/
    0x02,         /*nInterfaceProtocol : 0=none, 1=keyboard, 2=mouse*/
    0,            /*iInterface: Index of string descriptor*/
    /******************** Descriptor of HID ********************/
    /* 18 */
    0x09,         /*bLength: HID Descriptor size*/
    HID_DESCRIPTOR_TYPE, /*bDescriptorType: HID*/
    0x10,         /*bcdHID: HID Class Spec release number*/
    0x01,
    0x00,         /*bCountryCode: Hardware target country*/
    0x01,         /*bNumDescriptors: Number of HID class descriptors to follow*/
    0x22,         /*bDescriptorType*/
    REPORT_DESC ,// 0x0f,         /*wItemLength: Total length of Report descriptor*/
    0, //0x01,         //报告描述符长度,0x010f ,271 bytes
    /****************** Endpoint 1 Descriptor************/
    /* 27 */
    0x07,           //bLength: Endpoint Descriptor size*/
    USB_ENDPOINT_DESCRIPTOR_TYPE, /*bDescriptorType:*/
   
    0x81,          //bEndpointAddress: Endpoint 1 Address (IN)*/
    0x03,          //bmAttributes: Interrupt endpoint*/
    0x40,          //wMaxPacketSiz e: 64 Byte max */
    0x00,
    0x01,          //bInterval: Polling Interval (1 ms)*/
   
  /**********************Endpoint 1 Descriptor***********************/  
    0x07,         // bLength: Endpoint Descriptor size
    USB_ENDPOINT_DESCRIPTOR_TYPE,        // bDescriptorType:  
                        
    0x01,        // bEndpointAddress: Endpoint Address (OUT)
    0x03,        // bmAttributes: Interrupt endpoint  
    0x40,        // wMaxPacketSize: 64 Bytes max   
    0x00,
    0x01,        // bInterval: Polling Interval (1 ms)  



这个添加的配置描述符 , 增加下面这些,枚举就失败了

  /* //==================2 接口描述符======================
    0x09, //接口描述符长度
    0x04, //接口描述符
    0x01, //接口编号从1开始
    0x00, //备用编号
    0x02, //该接口使用的端点数
    0x03, //接口使用的类,0x03 是HID
    0x00, //no boot
    0x00, //keyboard
    0x00, //接口字符串的Index
    //===================2 HID描述符========================
    0x09, //HID 描述符 长度
    0x21, //HID 描述符
    0x10, //版本
    0x01,
    0x00, //
    0x01, //
    0x22, //type
    0x41, //报告描述符的长度
    0x00,
   //======================2 端点描述符===================
    0x07, //端点描述符长度
    0x05, //端点描述符
    0x82, //输入端点地址
    0x03, //interrupt
    0x40, //字节数目
    0x00, //
    0x01, //查询时间
   
    0x07, //端点描述符长度
    0x05, //端点描述符
    0x02, //输出端点地址
    0x03,//interrupt
    0x40, //字节数目
    0x00,
    0x01, //查询时间
此帖出自stm32/stm8论坛
 
 

回复

63

帖子

0

TA的资源

一粒金砂(初级)

4
 
                                 有没有人知道哦!
此帖出自stm32/stm8论坛
 
 
 

回复

69

帖子

0

TA的资源

一粒金砂(初级)

5
 
                                 寂寞的问题,寂寞的很
此帖出自stm32/stm8论坛
 
 
 

回复

68

帖子

0

TA的资源

一粒金砂(初级)

6
 
                                 这里高手如云,放心了
此帖出自stm32/stm8论坛
 
 
 

回复

77

帖子

0

TA的资源

一粒金砂(初级)

7
 
描述符没看出问题

我猜最有可能的问题是

你有没有根据接口号上传第二个接口的REPORT描述符?
此帖出自stm32/stm8论坛
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(初级)

8
 
                                 在枚举时,上传了,
此帖出自stm32/stm8论坛
 
 
 

回复

17

帖子

0

TA的资源

一粒金砂(中级)

9
 
                                 PC就没有读配置描述符了
此帖出自stm32/stm8论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表