menu
UsbTransferType
import { UsbTransferType } from "destack:device/binding";
USB endpoint transfer type.
1export enum UsbTransferType {2 Control = 0,3 Isochronous = 1,4 Bulk = 2,5 Interrupt = 3,6}Variants
Control = 0Control transfer endpoint.
Isochronous = 1Isochronous transfer endpoint.
Bulk = 2Bulk transfer endpoint.
Interrupt = 3Interrupt transfer endpoint.