From 7a91d7cdccaa7dfc3db0828a5230d6260e9338d7 Mon Sep 17 00:00:00 2001 From: Chris Dickens Date: Mon, 8 Jan 2018 22:03:49 -0800 Subject: [PATCH] core: Add definition for LIBUSB_SUPER_SPEED_PLUS (10Gb/s) Signed-off-by: Chris Dickens --- libusb/libusb.h | 3 +++ libusb/version_nano.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libusb/libusb.h b/libusb/libusb.h index e3755a0..430136b 100644 --- a/libusb/libusb.h +++ b/libusb/libusb.h @@ -983,6 +983,9 @@ enum libusb_speed { /** The device is operating at super speed (5000MBit/s). */ LIBUSB_SPEED_SUPER = 4, + + /** The device is operating at super speed plus (10000MBit/s). */ + LIBUSB_SPEED_SUPER_PLUS = 5, }; /** \ingroup libusb_dev diff --git a/libusb/version_nano.h b/libusb/version_nano.h index f2e6efa..1c458d5 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11287 +#define LIBUSB_NANO 11288