menu

UsbSpeed

import { UsbSpeed } from "destack:device/binding";

USB device speed.

language/library/src/device/binding/usb.ds:12:25
1export enum UsbSpeed {2    Unknown = 0,3    Low = 1,4    Full = 2,5    High = 3,6    Super = 4,7    SuperPlus = 5,8}

Variants

Unknown = 0

Host did not report the negotiated speed.

Low = 1

Low-speed USB.

Full = 2

Full-speed USB.

High = 3

High-speed USB.

Super = 4

SuperSpeed USB.

SuperPlus = 5

SuperSpeedPlus USB.