本文共 359 字,大约阅读时间需要 1 分钟。
/** * 取得配置描述符集合 */ short usbGetConfigDesc( unsigned char *pDataBuf) { // 取得配置描述符集合 usbDevSetup. wValue = DESC_CONFIGURATION; usbDevSetup. wIndex = 0; usbDevSetup. wLength = 64; usbGetDesc(pDataBuf);
return 0; } |