Imported Upstream version 2.7.4

This commit is contained in:
Laurent Bigonville 2016-07-18 02:11:41 +02:00
parent fd413a3168
commit c9cb2187ee
290 changed files with 7473 additions and 2607 deletions

View file

@ -38,12 +38,13 @@
* corresponding string did not exist or could not be retrieved.
*/
typedef struct USBDevice_s {
uint16_t VendorID; /*!< Device's Vendor ID */
uint16_t ProductID; /*!< Device's Product ID */
char *Vendor; /*!< Device's Vendor Name */
char *Product; /*!< Device's Product Name */
char *Serial; /* Product serial number */
char *Bus; /* Bus name, e.g. "003" */
uint16_t VendorID; /*!< Device's Vendor ID */
uint16_t ProductID; /*!< Device's Product ID */
char *Vendor; /*!< Device's Vendor Name */
char *Product; /*!< Device's Product Name */
char *Serial; /*!< Product serial number */
char *Bus; /*!< Bus name, e.g. "003" */
uint16_t bcdDevice; /*!< Device release number */
} USBDevice_t;
/*!