menu
UsbSpeed
import { UsbSpeed } from "destack:device/binding";
USB device speed.
1export enum UsbSpeed {2 Unknown = 0,3 Low = 1,4 Full = 2,5 High = 3,6 Super = 4,7 SuperPlus = 5,8}Variants
Unknown = 0Host did not report the negotiated speed.
Low = 1Low-speed USB.
Full = 2Full-speed USB.
High = 3High-speed USB.
Super = 4SuperSpeed USB.
SuperPlus = 5SuperSpeedPlus USB.