Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.23 KB | None | 0 0
  1. for cfg in dev:
  2. print(cfg[0]['iInterface'])
  3.  
  4. import sys
  5. import usb.core
  6. import usb.util
  7.  
  8. dev = usb.core.find(find_all=True)
  9.  
  10. for cfg in dev:
  11. sys.stdout.write('hex VendedorID='+hex(cfg.idVendor)+'& ProductId'+hex(cfg.idProduct)+'n')
  12. print(cfg)
  13.  
  14. hex VendedorID=0x413c& ProductId0x8187
  15. DEVICE ID 413c:8187 on Bus 000 Address 001 =================
  16. bLength : 0x12 (18 bytes)
  17. bDescriptorType : 0x1 Device
  18. bcdUSB : 0x200 USB 2.0
  19. bDeviceClass : 0xe0 Wireless Controller
  20. bDeviceSubClass : 0x1
  21. bDeviceProtocol : 0x1
  22. bMaxPacketSize0 : 0x40 (64 bytes)
  23. idVendor : 0x413c
  24. idProduct : 0x8187
  25. bcdDevice : 0x517 Device 5.17
  26. iManufacturer : 0x1 Dell Computer Corp
  27. iProduct : 0x2 DW375 Bluetooth Module
  28. iSerialNumber : 0x3 E006E6DAC48E
  29. bNumConfigurations : 0x1
  30. CONFIGURATION 1: 100 mA ==================================
  31. bLength : 0x9 (9 bytes)
  32. bDescriptorType : 0x2 Configuration
  33. wTotalLength : 0xf4 (244 bytes)
  34. bNumInterfaces : 0x4
  35. bConfigurationValue : 0x1
  36. iConfiguration : 0x0
  37. bmAttributes : 0xe0 Self Powered, Remote Wakeup
  38. bMaxPower : 0x32 (100 mA)
  39. INTERFACE 0: Wireless Controller =======================
  40. bLength : 0x9 (9 bytes)
  41. bDescriptorType : 0x4 Interface
  42. bInterfaceNumber : 0x0
  43. bAlternateSetting : 0x0
  44. bNumEndpoints : 0x3
  45. bInterfaceClass : 0xe0 Wireless Controller
  46. bInterfaceSubClass : 0x1
  47. bInterfaceProtocol : 0x1
  48. iInterface : 0x0
  49. ENDPOINT 0x81: Interrupt IN ==========================
  50. bLength : 0x7 (7 bytes)
  51. bDescriptorType : 0x5 Endpoint
  52. bEndpointAddress : 0x81 IN
  53. bmAttributes : 0x3 Interrupt
  54. wMaxPacketSize : 0x10 (16 bytes)
  55. bInterval : 0x1
  56. ENDPOINT 0x82: Bulk IN ===============================
  57. bLength : 0x7 (7 bytes)
  58. bDescriptorType : 0x5 Endpoint
  59. bEndpointAddress : 0x82 IN
  60. bmAttributes : 0x2 Bulk
  61. wMaxPacketSize : 0x40 (64 bytes)
  62. bInterval : 0x1
  63. ENDPOINT 0x2: Bulk OUT ===============================
  64. bLength : 0x7 (7 bytes)
  65. bDescriptorType : 0x5 Endpoint
  66. bEndpointAddress : 0x2 OUT
  67. bmAttributes : 0x2 Bulk
  68. wMaxPacketSize : 0x40 (64 bytes)
  69. bInterval : 0x1
  70. INTERFACE 1: Wireless Controller =======================
  71. bLength : 0x9 (9 bytes)
  72. bDescriptorType : 0x4 Interface
  73. bInterfaceNumber : 0x1
  74. bAlternateSetting : 0x0
  75. bNumEndpoints : 0x2
  76. bInterfaceClass : 0xe0 Wireless Controller
  77. bInterfaceSubClass : 0x1
  78. bInterfaceProtocol : 0x1
  79. iInterface : 0x0
  80. ENDPOINT 0x83: Isochronous IN ========================
  81. bLength : 0x7 (7 bytes)
  82. bDescriptorType : 0x5 Endpoint
  83. bEndpointAddress : 0x83 IN
  84. bmAttributes : 0x1 Isochronous
  85. wMaxPacketSize : 0x0 (0 bytes)
  86. bInterval : 0x1
  87. ENDPOINT 0x3: Isochronous OUT ========================
  88. bLength : 0x7 (7 bytes)
  89. bDescriptorType : 0x5 Endpoint
  90. bEndpointAddress : 0x3 OUT
  91. bmAttributes : 0x1 Isochronous
  92. wMaxPacketSize : 0x0 (0 bytes)
  93. bInterval : 0x1
  94. INTERFACE 1, 1: Wireless Controller ====================
  95. bLength : 0x9 (9 bytes)
  96. bDescriptorType : 0x4 Interface
  97. bInterfaceNumber : 0x1
  98. bAlternateSetting : 0x1
  99. bNumEndpoints : 0x2
  100. bInterfaceClass : 0xe0 Wireless Controller
  101. bInterfaceSubClass : 0x1
  102. bInterfaceProtocol : 0x1
  103. iInterface : 0x0
  104. ENDPOINT 0x83: Isochronous IN ========================
  105. bLength : 0x7 (7 bytes)
  106. bDescriptorType : 0x5 Endpoint
  107. bEndpointAddress : 0x83 IN
  108. bmAttributes : 0x1 Isochronous
  109. wMaxPacketSize : 0x9 (9 bytes)
  110. bInterval : 0x1
  111. ENDPOINT 0x3: Isochronous OUT ========================
  112. bLength : 0x7 (7 bytes)
  113. bDescriptorType : 0x5 Endpoint
  114. bEndpointAddress : 0x3 OUT
  115. bmAttributes : 0x1 Isochronous
  116. wMaxPacketSize : 0x9 (9 bytes)
  117. bInterval : 0x1
  118. INTERFACE 1, 2: Wireless Controller ====================
  119. bLength : 0x9 (9 bytes)
  120. bDescriptorType : 0x4 Interface
  121. bInterfaceNumber : 0x1
  122. bAlternateSetting : 0x2
  123. bNumEndpoints : 0x2
  124. bInterfaceClass : 0xe0 Wireless Controller
  125. bInterfaceSubClass : 0x1
  126. bInterfaceProtocol : 0x1
  127. iInterface : 0x0
  128. ENDPOINT 0x83: Isochronous IN ========================
  129. bLength : 0x7 (7 bytes)
  130. bDescriptorType : 0x5 Endpoint
  131. bEndpointAddress : 0x83 IN
  132. bmAttributes : 0x1 Isochronous
  133. wMaxPacketSize : 0x11 (17 bytes)
  134. bInterval : 0x1
  135. ENDPOINT 0x3: Isochronous OUT ========================
  136. bLength : 0x7 (7 bytes)
  137. bDescriptorType : 0x5 Endpoint
  138. bEndpointAddress : 0x3 OUT
  139. bmAttributes : 0x1 Isochronous
  140. wMaxPacketSize : 0x11 (17 bytes)
  141. bInterval : 0x1
  142. INTERFACE 1, 3: Wireless Controller ====================
  143. bLength : 0x9 (9 bytes)
  144. bDescriptorType : 0x4 Interface
  145. bInterfaceNumber : 0x1
  146. bAlternateSetting : 0x3
  147. bNumEndpoints : 0x2
  148. bInterfaceClass : 0xe0 Wireless Controller
  149. bInterfaceSubClass : 0x1
  150. bInterfaceProtocol : 0x1
  151. iInterface : 0x0
  152. ENDPOINT 0x83: Isochronous IN ========================
  153. bLength : 0x7 (7 bytes)
  154. bDescriptorType : 0x5 Endpoint
  155. bEndpointAddress : 0x83 IN
  156. bmAttributes : 0x1 Isochronous
  157. wMaxPacketSize : 0x20 (32 bytes)
  158. bInterval : 0x1
  159. ENDPOINT 0x3: Isochronous OUT ========================
  160. bLength : 0x7 (7 bytes)
  161. bDescriptorType : 0x5 Endpoint
  162. bEndpointAddress : 0x3 OUT
  163. bmAttributes : 0x1 Isochronous
  164. wMaxPacketSize : 0x20 (32 bytes)
  165. bInterval : 0x1
  166. INTERFACE 1, 4: Wireless Controller ====================
  167. bLength : 0x9 (9 bytes)
  168. bDescriptorType : 0x4 Interface
  169. bInterfaceNumber : 0x1
  170. bAlternateSetting : 0x4
  171. bNumEndpoints : 0x2
  172. bInterfaceClass : 0xe0 Wireless Controller
  173. bInterfaceSubClass : 0x1
  174. bInterfaceProtocol : 0x1
  175. iInterface : 0x0
  176. ENDPOINT 0x83: Isochronous IN ========================
  177. bLength : 0x7 (7 bytes)
  178. bDescriptorType : 0x5 Endpoint
  179. bEndpointAddress : 0x83 IN
  180. bmAttributes : 0x1 Isochronous
  181. wMaxPacketSize : 0x40 (64 bytes)
  182. bInterval : 0x1
  183. ENDPOINT 0x3: Isochronous OUT ========================
  184. bLength : 0x7 (7 bytes)
  185. bDescriptorType : 0x5 Endpoint
  186. bEndpointAddress : 0x3 OUT
  187. bmAttributes : 0x1 Isochronous
  188. wMaxPacketSize : 0x40 (64 bytes)
  189. bInterval : 0x1
  190. INTERFACE 1, 5: Wireless Controller ====================
  191. bLength : 0x9 (9 bytes)
  192. bDescriptorType : 0x4 Interface
  193. bInterfaceNumber : 0x1
  194. bAlternateSetting : 0x5
  195. bNumEndpoints : 0x2
  196. bInterfaceClass : 0xe0 Wireless Controller
  197. bInterfaceSubClass : 0x1
  198. bInterfaceProtocol : 0x1
  199. iInterface : 0x0
  200. ENDPOINT 0x83: Isochronous IN ========================
  201. bLength : 0x7 (7 bytes)
  202. bDescriptorType : 0x5 Endpoint
  203. bEndpointAddress : 0x83 IN
  204. bmAttributes : 0x1 Isochronous
  205. wMaxPacketSize : 0x40 (64 bytes)
  206. bInterval : 0x1
  207. ENDPOINT 0x3: Isochronous OUT ========================
  208. bLength : 0x7 (7 bytes)
  209. bDescriptorType : 0x5 Endpoint
  210. bEndpointAddress : 0x3 OUT
  211. bmAttributes : 0x1 Isochronous
  212. wMaxPacketSize : 0x40 (64 bytes)
  213. bInterval : 0x1
  214. INTERFACE 2: Vendor Specific ===========================
  215. bLength : 0x9 (9 bytes)
  216. bDescriptorType : 0x4 Interface
  217. bInterfaceNumber : 0x2
  218. bAlternateSetting : 0x0
  219. bNumEndpoints : 0x2
  220. bInterfaceClass : 0xff Vendor Specific
  221. bInterfaceSubClass : 0xff
  222. bInterfaceProtocol : 0xff
  223. iInterface : 0x0
  224. ENDPOINT 0x84: Bulk IN ===============================
  225. bLength : 0x7 (7 bytes)
  226. bDescriptorType : 0x5 Endpoint
  227. bEndpointAddress : 0x84 IN
  228. bmAttributes : 0x2 Bulk
  229. wMaxPacketSize : 0x20 (32 bytes)
  230. bInterval : 0x1
  231. ENDPOINT 0x4: Bulk OUT ===============================
  232. bLength : 0x7 (7 bytes)
  233. bDescriptorType : 0x5 Endpoint
  234. bEndpointAddress : 0x4 OUT
  235. bmAttributes : 0x2 Bulk
  236. wMaxPacketSize : 0x20 (32 bytes)
  237. bInterval : 0x1
  238. INTERFACE 3: Application Specific ======================
  239. bLength : 0x9 (9 bytes)
  240. bDescriptorType : 0x4 Interface
  241. bInterfaceNumber : 0x3
  242. bAlternateSetting : 0x0
  243. bNumEndpoints : 0x0
  244. bInterfaceClass : 0xfe Application Specific
  245. bInterfaceSubClass : 0x1
  246. bInterfaceProtocol : 0x0
  247. iInterface : 0x0
  248. hex VendedorID=0xc45& ProductId0x6433
  249. DEVICE ID 0c45:6433 on Bus 000 Address 002 =================
  250. bLength : 0x12 (18 bytes)
  251. bDescriptorType : 0x1 Device
  252. bcdUSB : 0x200 USB 2.0
  253. bDeviceClass : 0xef Miscellaneous
  254. bDeviceSubClass : 0x2
  255. bDeviceProtocol : 0x1
  256. bMaxPacketSize0 : 0x40 (64 bytes)
  257. idVendor : 0x0c45
  258. idProduct : 0x6433
  259. bcdDevice : 0x1315 Device 19.15
  260. iManufacturer : 0x2 CN018T967248725GB6YMA01
  261. iProduct : 0x1 Laptop_Integrated_Webcam_HD
  262. iSerialNumber : 0x0
  263. bNumConfigurations : 0x1
  264. CONFIGURATION 1: 500 mA ==================================
  265. bLength : 0x9 (9 bytes)
  266. bDescriptorType : 0x2 Configuration
  267. wTotalLength : 0x37b (891 bytes)
  268. bNumInterfaces : 0x2
  269. bConfigurationValue : 0x1
  270. iConfiguration : 0x0
  271. bmAttributes : 0x80 Bus Powered
  272. bMaxPower : 0xfa (500 mA)
  273. INTERFACE 0: Video =====================================
  274. bLength : 0x9 (9 bytes)
  275. bDescriptorType : 0x4 Interface
  276. bInterfaceNumber : 0x0
  277. bAlternateSetting : 0x0
  278. bNumEndpoints : 0x1
  279. bInterfaceClass : 0xe Video
  280. bInterfaceSubClass : 0x1
  281. bInterfaceProtocol : 0x0
  282. iInterface : 0x5 Integrated Webcam
  283. ENDPOINT 0x83: Interrupt IN ==========================
  284. bLength : 0x7 (7 bytes)
  285. bDescriptorType : 0x5 Endpoint
  286. bEndpointAddress : 0x83 IN
  287. bmAttributes : 0x3 Interrupt
  288. wMaxPacketSize : 0x10 (16 bytes)
  289. bInterval : 0x6
  290. INTERFACE 1: Video =====================================
  291. bLength : 0x9 (9 bytes)
  292. bDescriptorType : 0x4 Interface
  293. bInterfaceNumber : 0x1
  294. bAlternateSetting : 0x0
  295. bNumEndpoints : 0x0
  296. bInterfaceClass : 0xe Video
  297. bInterfaceSubClass : 0x2
  298. bInterfaceProtocol : 0x0
  299. iInterface : 0x5 Integrated Webcam
  300. INTERFACE 1, 1: Video ==================================
  301. bLength : 0x9 (9 bytes)
  302. bDescriptorType : 0x4 Interface
  303. bInterfaceNumber : 0x1
  304. bAlternateSetting : 0x1
  305. bNumEndpoints : 0x1
  306. bInterfaceClass : 0xe Video
  307. bInterfaceSubClass : 0x2
  308. bInterfaceProtocol : 0x0
  309. iInterface : 0x0
  310. ENDPOINT 0x81: Isochronous IN ========================
  311. bLength : 0x7 (7 bytes)
  312. bDescriptorType : 0x5 Endpoint
  313. bEndpointAddress : 0x81 IN
  314. bmAttributes : 0x5 Isochronous
  315. wMaxPacketSize : 0x80 (128 bytes)
  316. bInterval : 0x1
  317. INTERFACE 1, 2: Video ==================================
  318. bLength : 0x9 (9 bytes)
  319. bDescriptorType : 0x4 Interface
  320. bInterfaceNumber : 0x1
  321. bAlternateSetting : 0x2
  322. bNumEndpoints : 0x1
  323. bInterfaceClass : 0xe Video
  324. bInterfaceSubClass : 0x2
  325. bInterfaceProtocol : 0x0
  326. iInterface : 0x0
  327. ENDPOINT 0x81: Isochronous IN ========================
  328. bLength : 0x7 (7 bytes)
  329. bDescriptorType : 0x5 Endpoint
  330. bEndpointAddress : 0x81 IN
  331. bmAttributes : 0x5 Isochronous
  332. wMaxPacketSize : 0x100 (256 bytes)
  333. bInterval : 0x1
  334. INTERFACE 1, 3: Video ==================================
  335. bLength : 0x9 (9 bytes)
  336. bDescriptorType : 0x4 Interface
  337. bInterfaceNumber : 0x1
  338. bAlternateSetting : 0x3
  339. bNumEndpoints : 0x1
  340. bInterfaceClass : 0xe Video
  341. bInterfaceSubClass : 0x2
  342. bInterfaceProtocol : 0x0
  343. iInterface : 0x0
  344. ENDPOINT 0x81: Isochronous IN ========================
  345. bLength : 0x7 (7 bytes)
  346. bDescriptorType : 0x5 Endpoint
  347. bEndpointAddress : 0x81 IN
  348. bmAttributes : 0x5 Isochronous
  349. wMaxPacketSize : 0x320 (800 bytes)
  350. bInterval : 0x1
  351. INTERFACE 1, 4: Video ==================================
  352. bLength : 0x9 (9 bytes)
  353. bDescriptorType : 0x4 Interface
  354. bInterfaceNumber : 0x1
  355. bAlternateSetting : 0x4
  356. bNumEndpoints : 0x1
  357. bInterfaceClass : 0xe Video
  358. bInterfaceSubClass : 0x2
  359. bInterfaceProtocol : 0x0
  360. iInterface : 0x0
  361. ENDPOINT 0x81: Isochronous IN ========================
  362. bLength : 0x7 (7 bytes)
  363. bDescriptorType : 0x5 Endpoint
  364. bEndpointAddress : 0x81 IN
  365. bmAttributes : 0x5 Isochronous
  366. wMaxPacketSize : 0xb20 (2848 bytes)
  367. bInterval : 0x1
  368. INTERFACE 1, 5: Video ==================================
  369. bLength : 0x9 (9 bytes)
  370. bDescriptorType : 0x4 Interface
  371. bInterfaceNumber : 0x1
  372. bAlternateSetting : 0x5
  373. bNumEndpoints : 0x1
  374. bInterfaceClass : 0xe Video
  375. bInterfaceSubClass : 0x2
  376. bInterfaceProtocol : 0x0
  377. iInterface : 0x0
  378. ENDPOINT 0x81: Isochronous IN ========================
  379. bLength : 0x7 (7 bytes)
  380. bDescriptorType : 0x5 Endpoint
  381. bEndpointAddress : 0x81 IN
  382. bmAttributes : 0x5 Isochronous
  383. wMaxPacketSize : 0x1320 (4896 bytes)
  384. bInterval : 0x1
  385. INTERFACE 1, 6: Video ==================================
  386. bLength : 0x9 (9 bytes)
  387. bDescriptorType : 0x4 Interface
  388. bInterfaceNumber : 0x1
  389. bAlternateSetting : 0x6
  390. bNumEndpoints : 0x1
  391. bInterfaceClass : 0xe Video
  392. bInterfaceSubClass : 0x2
  393. bInterfaceProtocol : 0x0
  394. iInterface : 0x0
  395. ENDPOINT 0x81: Isochronous IN ========================
  396. bLength : 0x7 (7 bytes)
  397. bDescriptorType : 0x5 Endpoint
  398. bEndpointAddress : 0x81 IN
  399. bmAttributes : 0x5 Isochronous
  400. wMaxPacketSize : 0x1400 (5120 bytes)
  401. bInterval : 0x1
  402. hex VendedorID=0xa5c& ProductId0x5801
  403. DEVICE ID 0a5c:5801 on Bus 000 Address 003 =================
  404. bLength : 0x12 (18 bytes)
  405. bDescriptorType : 0x1 Device
  406. bcdUSB : 0x110 USB 1.1
  407. bDeviceClass : 0x0 Specified at interface
  408. bDeviceSubClass : 0x0
  409. bDeviceProtocol : 0x0
  410. bMaxPacketSize0 : 0x40 (64 bytes)
  411. idVendor : 0x0a5c
  412. idProduct : 0x5801
  413. bcdDevice : 0x101 Device 1.01
  414. iManufacturer : 0x1 Broadcom Corp
  415. iProduct : 0x2 5880
  416. iSerialNumber : 0x3 0123456789ABCD
  417. bNumConfigurations : 0x1
  418. CONFIGURATION 0: 100 mA ==================================
  419. bLength : 0x9 (9 bytes)
  420. bDescriptorType : 0x2 Configuration
  421. wTotalLength : 0xab (171 bytes)
  422. bNumInterfaces : 0x3
  423. bConfigurationValue : 0x0
  424. iConfiguration : 0x0
  425. bmAttributes : 0xc0 Self Powered
  426. bMaxPower : 0x32 (100 mA)
  427. INTERFACE 0: Application Specific ======================
  428. bLength : 0x9 (9 bytes)
  429. bDescriptorType : 0x4 Interface
  430. bInterfaceNumber : 0x0
  431. bAlternateSetting : 0x0
  432. bNumEndpoints : 0x3
  433. bInterfaceClass : 0xfe Application Specific
  434. bInterfaceSubClass : 0x0
  435. bInterfaceProtocol : 0x0
  436. iInterface : 0x4 Broadcom USH w/swipe sensor
  437. ENDPOINT 0x81: Bulk IN ===============================
  438. bLength : 0x7 (7 bytes)
  439. bDescriptorType : 0x5 Endpoint
  440. bEndpointAddress : 0x81 IN
  441. bmAttributes : 0x2 Bulk
  442. wMaxPacketSize : 0x40 (64 bytes)
  443. bInterval : 0x0
  444. ENDPOINT 0x1: Bulk OUT ===============================
  445. bLength : 0x7 (7 bytes)
  446. bDescriptorType : 0x5 Endpoint
  447. bEndpointAddress : 0x1 OUT
  448. bmAttributes : 0x2 Bulk
  449. wMaxPacketSize : 0x40 (64 bytes)
  450. bInterval : 0x0
  451. ENDPOINT 0x85: Interrupt IN ==========================
  452. bLength : 0x7 (7 bytes)
  453. bDescriptorType : 0x5 Endpoint
  454. bEndpointAddress : 0x85 IN
  455. bmAttributes : 0x3 Interrupt
  456. wMaxPacketSize : 0x10 (16 bytes)
  457. bInterval : 0x20
  458. INTERFACE 1: Smart Card ================================
  459. bLength : 0x9 (9 bytes)
  460. bDescriptorType : 0x4 Interface
  461. bInterfaceNumber : 0x1
  462. bAlternateSetting : 0x0
  463. bNumEndpoints : 0x3
  464. bInterfaceClass : 0xb Smart Card
  465. bInterfaceSubClass : 0x0
  466. bInterfaceProtocol : 0x0
  467. iInterface : 0x5 Contacted SmartCard
  468. ENDPOINT 0x82: Bulk IN ===============================
  469. bLength : 0x7 (7 bytes)
  470. bDescriptorType : 0x5 Endpoint
  471. bEndpointAddress : 0x82 IN
  472. bmAttributes : 0x2 Bulk
  473. wMaxPacketSize : 0x40 (64 bytes)
  474. bInterval : 0x0
  475. ENDPOINT 0x2: Bulk OUT ===============================
  476. bLength : 0x7 (7 bytes)
  477. bDescriptorType : 0x5 Endpoint
  478. bEndpointAddress : 0x2 OUT
  479. bmAttributes : 0x2 Bulk
  480. wMaxPacketSize : 0x40 (64 bytes)
  481. bInterval : 0x0
  482. ENDPOINT 0x86: Interrupt IN ==========================
  483. bLength : 0x7 (7 bytes)
  484. bDescriptorType : 0x5 Endpoint
  485. bEndpointAddress : 0x86 IN
  486. bmAttributes : 0x3 Interrupt
  487. wMaxPacketSize : 0x10 (16 bytes)
  488. bInterval : 0x20
  489. INTERFACE 3: Application Specific ======================
  490. bLength : 0x9 (9 bytes)
  491. bDescriptorType : 0x4 Interface
  492. bInterfaceNumber : 0x3
  493. bAlternateSetting : 0x0
  494. bNumEndpoints : 0x1
  495. bInterfaceClass : 0xfe Application Specific
  496. bInterfaceSubClass : 0x0
  497. bInterfaceProtocol : 0x0
  498. iInterface : 0x7 Broadcom USH
  499. ENDPOINT 0x87: Interrupt IN ==========================
  500. bLength : 0x7 (7 bytes)
  501. bDescriptorType : 0x5 Endpoint
  502. bEndpointAddress : 0x87 IN
  503. bmAttributes : 0x3 Interrupt
  504. wMaxPacketSize : 0x10 (16 bytes)
  505. bInterval : 0x20
  506. [Finished in 0.5s]
Add Comment
Please, Sign In to add comment